Changeset 1200772
- Timestamp:
- 07/17/2015 06:38:42 AM (10 years ago)
- Location:
- igit-related-posts-with-thumb-images-after-posts
- Files:
-
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
igit-related-posts-with-thumb-images-after-posts/tags/4.5.2/Readme.txt
r1200066 r1200772 6 6 Requires at least: 3.0 7 7 Tested up to: 4.2.2 8 Stable tag: 4.5. 18 Stable tag: 4.5.2 9 9 10 10 … … 81 81 82 82 == Changelog == 83 = 4.5.2 = 84 - Fix Bug - Can't add media in post/page. 85 83 86 = 4.5.1 = 84 87 - Added option to upload default no imnage from settings page. -
igit-related-posts-with-thumb-images-after-posts/tags/4.5.2/igit-rpwt.php
r1200066 r1200772 2 2 /* 3 3 Plugin Name: IGIT Related Post With Thumb 4 Version: 4.5. 14 Version: 4.5.2 5 5 Plugin URI: http://www.hackingethics.com/blog/wordpress-plugins/igit-related-posts-with-thumb-image-after-posts/ 6 6 Description: Show related posts with thumb image after Posts. Ajax Base Admin options.Options for dynamic height and width of Thumb.Plugin By <a href="http://www.hackingethics.com"><strong>Hacking Ethics</strong></a>.You can <a href="options-general.php?page=igit-rpwt">Configure...</a> it from <a href="options-general.php?page=igit-rpwt">Here. -
igit-related-posts-with-thumb-images-after-posts/tags/4.5.2/inc/admin_core.php
r1200066 r1200772 3 3 { 4 4 wp_enqueue_style('my-style', IGIT_RPWT_CSS_URL.'/igit_style.css'); 5 if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') { 6 wp_enqueue_style('thickbox'); 7 } 8 5 9 } 6 10 function igit_admin_enqueue_script() … … 8 12 wp_enqueue_script('jquery-form'); 9 13 wp_enqueue_script('jscolor', IGIT_RPWT_JS_URL.'/jscolor.js'); 14 if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') { 15 wp_enqueue_script('media-upload'); 16 wp_enqueue_script('thickbox'); 17 wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox')); 18 wp_enqueue_script('my-upload'); 19 } 20 10 21 } 11 22 function igit_plugin_menu() … … 18 29 return $res_val; 19 30 } 20 function igitrpwt_admin_scripts() { 21 wp_enqueue_script('media-upload'); 22 wp_enqueue_script('thickbox'); 23 wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox')); 24 wp_enqueue_script('my-upload'); 25 } 26 function igitrpwt_admin_styles() { 27 wp_enqueue_style('thickbox'); 28 } 29 add_action('admin_print_scripts', 'igitrpwt_admin_scripts'); 30 add_action('admin_print_styles', 'igitrpwt_admin_styles'); 31 31 32 function igit_action_javascript() 32 33 { -
igit-related-posts-with-thumb-images-after-posts/trunk/Readme.txt
r1200066 r1200772 6 6 Requires at least: 3.0 7 7 Tested up to: 4.2.2 8 Stable tag: 4.5. 18 Stable tag: 4.5.2 9 9 10 10 … … 81 81 82 82 == Changelog == 83 = 4.5.2 = 84 - Fix Bug - Can't add media in post/page. 85 83 86 = 4.5.1 = 84 87 - Added option to upload default no imnage from settings page. -
igit-related-posts-with-thumb-images-after-posts/trunk/igit-rpwt.php
r1200066 r1200772 2 2 /* 3 3 Plugin Name: IGIT Related Post With Thumb 4 Version: 4.5. 14 Version: 4.5.2 5 5 Plugin URI: http://www.hackingethics.com/blog/wordpress-plugins/igit-related-posts-with-thumb-image-after-posts/ 6 6 Description: Show related posts with thumb image after Posts. Ajax Base Admin options.Options for dynamic height and width of Thumb.Plugin By <a href="http://www.hackingethics.com"><strong>Hacking Ethics</strong></a>.You can <a href="options-general.php?page=igit-rpwt">Configure...</a> it from <a href="options-general.php?page=igit-rpwt">Here. -
igit-related-posts-with-thumb-images-after-posts/trunk/inc/admin_core.php
r1200066 r1200772 3 3 { 4 4 wp_enqueue_style('my-style', IGIT_RPWT_CSS_URL.'/igit_style.css'); 5 if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') { 6 wp_enqueue_style('thickbox'); 7 } 8 5 9 } 6 10 function igit_admin_enqueue_script() … … 8 12 wp_enqueue_script('jquery-form'); 9 13 wp_enqueue_script('jscolor', IGIT_RPWT_JS_URL.'/jscolor.js'); 14 if (isset($_GET['page']) && $_GET['page'] == 'igit-rpwt') { 15 wp_enqueue_script('media-upload'); 16 wp_enqueue_script('thickbox'); 17 wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox')); 18 wp_enqueue_script('my-upload'); 19 } 20 10 21 } 11 22 function igit_plugin_menu() … … 18 29 return $res_val; 19 30 } 20 function igitrpwt_admin_scripts() { 21 wp_enqueue_script('media-upload'); 22 wp_enqueue_script('thickbox'); 23 wp_register_script('my-upload', IGIT_RPWT_JS_URL.'/my-script.js', array('jquery','media-upload','thickbox')); 24 wp_enqueue_script('my-upload'); 25 } 26 function igitrpwt_admin_styles() { 27 wp_enqueue_style('thickbox'); 28 } 29 add_action('admin_print_scripts', 'igitrpwt_admin_scripts'); 30 add_action('admin_print_styles', 'igitrpwt_admin_styles'); 31 31 32 function igit_action_javascript() 32 33 {
Note: See TracChangeset
for help on using the changeset viewer.