Changeset 415405
- Timestamp:
- 07/26/2011 01:49:30 PM (15 years ago)
- Location:
- genesis-post-teasers/trunk
- Files:
-
- 3 edited
-
css/teaserstyles.php (modified) (2 diffs)
-
genesis-post-teasers.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
genesis-post-teasers/trunk/css/teaserstyles.php
r415099 r415405 4 4 $width = '48%'; 5 5 6 if ( $_GET['genesisopt_width'] && $_GET['genesisopt_no_pair'] == 0 ) {6 if ( $_GET['genesisopt_width'] && $_GET['genesisopt_no_pair'] == 0 && $_GET['genesisopt_enable_custom_styles'] == 1 ) { 7 7 $width = $_GET['genesisopt_width']; 8 8 $width .= "px"; 9 9 } 10 if ( $_GET['genesisopt_height'] == '' ) {11 $height = "auto";10 if ( $_GET['genesisopt_height'] == '' || $_GET['genesisopt_enable_custom_styles'] != 1 ) { 11 $height = "auto"; 12 12 } else { 13 13 $height = $_GET['genesisopt_height']; … … 29 29 <?php 30 30 } else { 31 if ( $_GET['genesisopt_enable_custom_styles'] != 1 )32 return; ?>33 31 ?> 34 32 -
genesis-post-teasers/trunk/genesis-post-teasers.php
r415099 r415405 4 4 Plugin URI: http://genesistutorials.com/plug-ins/genesis-post-teasers/ 5 5 Description: Add theme settings for enabling teasers for the Genesis Theme Framework by studiopress. Uses genesis_grid_loop(); 6 Version: 1.0.3 6 Version: 1.0.3.1 7 7 Author: Christopher Cochran 8 8 Author URI: http://christophercochran.me -
genesis-post-teasers/trunk/readme.txt
r415102 r415405 36 36 37 37 == Changelog == 38 = 1.0.3.1 = 39 * Fixed: Default styles will not show if edit styles is not checked. 40 38 41 = 1.0.3 = 39 42 * Put Settings on its own page as a sub menu item of Genesis. ( "Post Teaser Settings" )
Note: See TracChangeset
for help on using the changeset viewer.