Changeset 64 for trunk/wp-content/themes/xpress_default/image.php
- Timestamp:
- Jan 8, 2009, 9:20:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/xpress_default/image.php
r1 r64 11 11 <div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div> 12 12 13 <?php the_content('<p class="serif">' . __('Read the rest of this entry »', ' kubrick') . '</p>'); ?>13 <?php the_content('<p class="serif">' . __('Read the rest of this entry »', 'xpress') . '</p>'); ?> 14 14 15 <?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', ' kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>15 <?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'xpress') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> 16 16 17 17 <div class="navigation"> … … 23 23 <p class="postmetadata alt"> 24 24 <small> 25 <?php printf(__('This entry was posted on %1$s at %2$s and is filed under %3$s.', ' kubrick'), get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(', ')); ?>25 <?php printf(__('This entry was posted on %1$s at %2$s and is filed under %3$s.', 'xpress'), get_the_time(__('l, F jS, Y', 'xpress')), get_the_time(), get_the_category_list(', ')); ?> 26 26 <?php the_taxonomies(); ?> 27 <?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", " kubrick"), get_post_comments_feed_link()); ?>27 <?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", "xpress"), get_post_comments_feed_link()); ?> 28 28 29 29 <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) { 30 30 // Both Comments and Pings are open ?> 31 <?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', ' kubrick'), trackback_url(false)); ?>31 <?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'xpress'), trackback_url(false)); ?> 32 32 33 33 <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) { 34 34 // Only Pings are Open ?> 35 <?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', ' kubrick'), trackback_url(false)); ?>35 <?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'xpress'), trackback_url(false)); ?> 36 36 37 37 <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) { 38 38 // Comments are open, Pings are not ?> 39 <?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', ' kubrick'); ?>39 <?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'xpress'); ?> 40 40 41 41 <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) { 42 42 // Neither Comments, nor Pings are open ?> 43 <?php _e('Both comments and pings are currently closed.', ' kubrick'); ?>43 <?php _e('Both comments and pings are currently closed.', 'xpress'); ?> 44 44 45 <?php } edit_post_link(__('Edit this entry.', ' kubrick'),'',''); ?>45 <?php } edit_post_link(__('Edit this entry.', 'xpress'),'',''); ?> 46 46 47 47 </small> … … 56 56 <?php endwhile; else: ?> 57 57 58 <p><?php _e('Sorry, no posts matched your criteria.', ' kubrick'); ?></p>58 <p><?php _e('Sorry, no posts matched your criteria.', 'xpress'); ?></p> 59 59 60 60 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.