Changeset 222728
- Timestamp:
- 03/28/2010 08:50:26 PM (16 years ago)
- Location:
- frontpage-slideshow/trunk
- Files:
-
- 2 edited
-
frontpage-slideshow.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontpage-slideshow/trunk/frontpage-slideshow.php
r222690 r222728 4 4 Plugin URI: http://www.modulaweb.fr/blog/wp-plugins/frontside-slideshow/en/ 5 5 Description: Frontpage Slideshow provides a slide show like you can see on <a href="http://linux.com">linux.com</a> or <a href="http://modulaweb.fr/">modulaweb.fr</a> front page. <a href="options-general.php?page=frontpage-slideshow">Configuration Page</a> 6 Version: 0.9. 56 Version: 0.9.6 7 7 Author: Jean-François VIAL 8 8 Author URI: http://www.modulaweb.fr/ … … 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 */ 26 define ('FRONTPAGE_SLIDESHOW_VERSION', '0.9. 5');26 define ('FRONTPAGE_SLIDESHOW_VERSION', '0.9.6'); 27 27 $fs_already_displayed = false; // the slideshow dont have been displayed yet 28 28 function frontpageSlideshow($content,$force_display=false,$options=array()) { … … 113 113 114 114 $fscategories = join(',',$options['values']['fs_cats']); 115 if ((!is_feed() && is_front_page()) || $force_display) { // the slideshow is only displayed on frontpage115 //if ((!is_feed() && is_front_page()) || $force_display) { // the slideshow is only displayed on frontpage 116 116 $fsposts = get_posts('category='.$fscategories.'&orderby=ID&numberposts='.$options['values']['fs_slides']); 117 117 $fslast = count($fsposts) - 1; … … 119 119 frontpageSlideshow_JS($options,$fslast,$force_display); 120 120 frontpageSlideshow_CSS($options,$force_display); 121 }121 //} 122 122 } 123 123 … … 429 429 $options['values'] = shortcode_atts($options['values'], $attributes); 430 430 $force_display_if_shortcode = true; 431 //frontpageSlideshow_header(true,$options);431 //frontpageSlideshow_header(true,$options); 432 432 return frontpageSlideshow('',true,$options); 433 433 } -
frontpage-slideshow/trunk/readme.txt
r222719 r222728 5 5 Requires at least: 2.7.0 6 6 Tested up to: 2.9.2 7 Stable tag: 0.9. 57 Stable tag: 0.9.6 8 8 9 9 Frontpage Slideshow provides a slide show like you can see in linux.com front page … … 87 87 * v 0.9.4 : Correcting minor bug that was messing the «Slide comment» input field when html was present in it 88 88 * v 0.9.5 : Correcting jQuery libraries compatibility issues that was messing with normal behavior of WP admin area 89 * v 0.9.6 : Fixes a wrong behavior that dont load plugin specific JS and CSS when shortcode is used anywhere else than header.php template file. 89 90 90 91 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.