- Timestamp:
- Jun 4, 2009, 2:02:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/single.php
r232 r252 21 21 <?php if (function_exists('hotDates')) { hotDates(); }?> 22 22 <div class ="xpress-post-title"> 23 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> 23 <?php if(function_exists('the_title_attribute')) : ?> 24 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> 25 <?php else : ?> 26 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title('','',false)); ?>"><?php the_title(); ?></a></h2> 27 <?php endif; ?> 24 28 </div> 25 29 </div> … … 61 65 62 66 <div id ="xpress-comments-block"> 63 <?php comments_template( '', true); ?>67 <?php comments_template(); ?> 64 68 </div> 65 69 </div>
Note: See TracChangeset
for help on using the changeset viewer.