Changeset 173
- Timestamp:
- 06/21/08 18:11:12 (2 months ago)
- Files:
-
- trunk/sidebar.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/sidebar.php
r156 r173 21 21 } 22 22 23 if (is_single() || is_archive()) { 24 if(function_exists(related_posts)){ ?> 23 if ((is_single() || is_archive()) && function_exists(related_posts)){ ?> 25 24 <li><h2>Possibly Related</h2> 26 25 <?php related_posts(); ?> 27 26 </li> 28 27 <?php 29 } 30 } ?> 28 } 29 30 if ((is_single() || is_archive()) && function_exists(wp_related_posts)) {?> 31 <li><h2>Possibly Related</h2> 32 <?php wp_related_posts(); ?> 33 </li> 34 <?php 35 }?> 31 36 <?php endif; ?> 32 37
