Changeset 982337
- Timestamp:
- 09/05/2014 08:21:33 PM (12 years ago)
- Location:
- numix-post-slider/trunk
- Files:
-
- 1 deleted
- 4 edited
-
admin/class-numix-post-slider-admin.php (modified) (3 diffs)
-
numix-post-slider.php (modified) (1 diff)
-
public/assets/js/jquery.easing.1.3.js (deleted)
-
public/class-numix-post-slider.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
numix-post-slider/trunk/admin/class-numix-post-slider-admin.php
r937171 r982337 260 260 if ( $_POST['action'] == 'numix_slider_display_taxonomies' ) { 261 261 $taxonomies = get_object_taxonomies( array( 'post_type' => $_POST['post_type'] ), 'objects' ); 262 $out = '';263 262 264 263 $id = intval( $_POST['id'] ); … … 278 277 279 278 $taxonomy_name = $taxonomy->name; 280 $out .= "<optgroup id=\"{$taxonomy_name}\" label=\"{$taxonomy->labels->name}\"> \n";279 $out = "<optgroup id=\"{$taxonomy_name}\" label=\"{$taxonomy->labels->name}\"> \n"; 281 280 $selected_value = array(); 282 281 if ( isset( $selected_array[$taxonomy_name] ) ) { … … 293 292 } 294 293 $out .= '</optgroup>'; 294 echo $out; 295 295 } 296 296 } 297 297 } 298 echo $out;299 298 } 300 299 die(); -
numix-post-slider/trunk/numix-post-slider.php
r937171 r982337 14 14 * Plugin URI: http://www.numixtech.com 15 15 * Description: Variable width and infinite post slider carousel for posts 16 * Version: 1.0. 116 * Version: 1.0.2 17 17 * Author: Numix Technologies 18 18 * Author URI: http://numixtech.com -
numix-post-slider/trunk/public/class-numix-post-slider.php
r937171 r982337 27 27 * @var string 28 28 */ 29 const VERSION = '1.0. 1';29 const VERSION = '1.0.2'; 30 30 31 31 /** … … 326 326 public function enqueue_scripts() { 327 327 328 wp_register_script( $this->plugin_slug . '-easing-script', plugins_url( 'assets/js/jquery.easing.1.3.js', __FILE__ ), array( 'jquery' ), self::VERSION ); 329 wp_enqueue_script( $this->plugin_slug . '-plugin-script', plugins_url( 'assets/js/jquery.numix-slider.min.js', __FILE__ ), array( $this->plugin_slug . '-easing-script', 'jquery' ), self::VERSION ); 328 wp_enqueue_script( $this->plugin_slug . '-plugin-script', plugins_url( 'assets/js/jquery.numix-slider.min.js', __FILE__ ), array( 'jquery', 'jquery-effects-core' ), self::VERSION ); 330 329 } 331 330 … … 511 510 $image->resize( $new_width, $new_height, false ); 512 511 $new_image = $image->save( $new_file_path ); 513 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( ' url' ) ), $new_image['path'] );512 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( 'wpurl' ) ), $new_image['path'] ); 514 513 } 515 514 } else { 516 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( ' url' ) ), $new_file_path );515 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( 'wpurl' ) ), $new_file_path ); 517 516 } 518 517 } … … 547 546 $image->resize( $thumb_width, $thumb_height, $crop ); 548 547 $new_image = $image->save( $new_file_path ); 549 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( ' url' ) ), $new_image['path'] );548 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( 'wpurl' ) ), $new_image['path'] ); 550 549 } 551 550 } else { 552 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( ' url' ) ), $new_file_path );551 $image_url = str_replace( ABSPATH, trailingslashit( get_bloginfo( 'wpurl' ) ), $new_file_path ); 553 552 } 554 553 } -
numix-post-slider/trunk/readme.txt
r971337 r982337 2 2 Contributors: numixtech, asalamwp, gauravpadia 3 3 Homepage: http://numixtech.com/ 4 Tags: variable width carousel, carousel, slider, featured, gallery, slideshow, infinite slider, logo slider, post slider, auto play, center slider, jquery, javascript 4 Tags: variable width carousel, carousel, slider, featured, gallery, slideshow, infinite slider, logo slider, post slider, auto play, center slider, jquery, javascript, banner rotator, best carousel slider, best post slider, best responsive slider, best slideshow, best slideshow plugin, carousel slider, featured thumbnail, image, image slider, image slideshow, images, logo scroller, news slider, Post, posts, recent post slider, responsive carousel, responsive carousel slider, responsive slider, responsive slideshow, showcase, sidebar slideshow, thumbnail, thumbnail slider, ticker, wordpress slideshow 5 5 Requires at least: 3.6 6 6 Tested up to: 3.9.1 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 68 68 == Changelog == 69 69 70 = 1.0.2 = 71 Wordpress 4.0 Compatibility 72 Removed jquery.easing.1.3.js instead usnig jquery-effects-core included in wordpress core 73 Other Minor bug Fixes 74 70 75 = 1.0.1 = 71 76 * Added display post title option in slider
Note: See TracChangeset
for help on using the changeset viewer.