Changeset 168816
- Timestamp:
- 10/30/2009 07:29:56 PM (16 years ago)
- Location:
- frontpage-slideshow/trunk
- Files:
-
- 2 edited
-
frontpage-slideshow.php (modified) (7 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontpage-slideshow/trunk/frontpage-slideshow.php
r166061 r168816 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.7. 16 Version: 0.7.2 7 7 Author: Jean-François VIAL 8 8 Author URI: http://www.modulaweb.fr/ … … 114 114 if ((!is_feed() && is_front_page() && is_page()) || $force_display) { 115 115 ?> 116 <!-- added by plugin FrontpageSlideshow --> 116 117 <script type="text/javascript"> 117 118 /* <![CDATA[ */ … … 144 145 /* ]]> */ 145 146 </script> 147 <!-- /added by plugin FrontpageSlideshow --> 146 148 <?php 147 149 } … … 157 159 */ 158 160 ?> 161 <!-- added by plugin FrontpageSlideshow --> 159 162 <!--[if IE]> 160 163 <style type="text/css"> … … 164 167 </style> 165 168 <![endif]--> 166 167 <style type="text/css"> 169 <?php ob_start(); ?> 168 170 #fs-main { 169 171 width: <?php echo $options['values']['fs_main_width']?>; … … 308 310 top: -300000px!important; 309 311 } 310 </style> 312 <?php 313 $css = ob_get_contents(); 314 ob_end_clean(); 315 ?> 316 <script type="text/javascript"> 317 /* <![CDATA[ */ 318 var frontpageSlideshow_CSS = document.createElement('style'); 319 frontpageSlideshow_CSS.innerHTML = "<?php echo str_replace("\n",' ',str_replace("\n\t",' ',str_replace('"','\"',$css))); ?>" 320 document.getElementsByTagName('head').item(0).appendChild(frontpageSlideshow_CSS); 321 /* ]]> */ 322 </script> 323 <!-- /added by plugin FrontpageSlideshow --> 324 311 325 <?php 312 326 } … … 693 707 $args = array('plugin' => 'frontpage-slideshow', 'plugin_version' => FRONTPAGE_SLIDESHOW_VERSION); 694 708 $args['siteurl'] = get_option('siteurl'); 695 $args[' &admin_email'] = get_option('admin_email');709 $args['admin_email'] = get_option('admin_email'); 696 710 $args['WP_version'] = $wp_version; 697 711 $args['theme'] = get_option('template'); -
frontpage-slideshow/trunk/readme.txt
r166061 r168816 5 5 Requires at least: 2.8.0 6 6 Tested up to: 2.8.4 7 Stable tag: 0.7 7 Stable tag: 0.7.2 8 8 9 9 Frontpage Slideshow provides a slide show like you can see in linux.com front page … … 44 44 * v 0.7 : allow to use the WP Text Widget to display the slideshow by inserting the shortcode onto the text itself, modify the original WP Text Widget to allow the use of all other shortcodes 45 45 * v 0.7.1 : changes made on the admin page ; adding the plugins unique ID system to allow faster troubleshoot ; possibility to view the complete shortcode string 46 * v 0.7.2 : uses javascript to include specific css rather than plain html allowing to validate to XHTML 46 47 47 48 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.