Changeset 802560
- Timestamp:
- 11/11/2013 05:03:11 PM (12 years ago)
- Location:
- pinterest-rss-widget/trunk
- Files:
-
- 2 edited
-
pinterest-rss-widget.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pinterest-rss-widget/trunk/pinterest-rss-widget.php
r654854 r802560 5 5 Description: Display up to 25 of your latest Pinterest Pins in your sidebar. You are welcome to express your gratitude for this plugin by donating via <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SXTEL7YLUSFFC" target="_blank"><strong>PayPal</strong></a> 6 6 Author: bkmacdaddy designs 7 Version: 2.2. 17 Version: 2.2.2 8 8 Author URI: http://bkmacdaddy.com/ 9 9 … … 38 38 if ( file_exists($pinterest_rss_myStyleFile) ) { 39 39 wp_register_style('pinterestRSScss', $pinterest_rss_myStyleUrl); 40 wp_enqueue_style( 'pinterestRSScss'); 41 wp_deregister_script( 'jquery' ); 42 wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'); 43 wp_enqueue_script( 'jquery' ); 40 wp_enqueue_style( 'pinterestRSScss'); 44 41 wp_register_script( 'pinterestRSSjs', $pinterest_rss_nailThumb); 45 wp_enqueue_script( 'pinterestRSSjs' ); 42 wp_enqueue_script( 43 'pinterestRSSjs', 44 $pinterest_rss_nailThumb, 45 array( 'jquery' ) 46 ); 46 47 } 47 48 } … … 74 75 $content .= '<div class="pins-feed-'.$divname.'">'; 75 76 $content .= '<a href="'.$item->get_permalink().'"'; 76 if ($target == 'newwindow') { $content .= ' target="_BLANK" '; };77 if ($target == 'newwindow') { $content .= ' target="_BLANK" '; }; 77 78 $content .= 'title="'.$item->get_title().' - Pinned on '.$item->get_date('M d, Y').'">'; 78 79 -
pinterest-rss-widget/trunk/readme.txt
r654854 r802560 70 70 == Changelog == 71 71 72 = 2.2.2 = 73 * Removed problematic deregistering of WordPress jQuery 74 * Plugin now uses built-in WordPress jQuery 75 72 76 = 2.2.1 = 73 77 * Fixed problem with wrong version in repository
Note: See TracChangeset
for help on using the changeset viewer.