Changeset 64 for trunk/wp-content/themes/xpress_default/search.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/search.php
r47 r64 22 22 <?php if (have_posts()) : ?> 23 23 24 <h2 class="pagetitle"><?php _e('Search Results', ' kubrick'); ?></h2>24 <h2 class="pagetitle"><?php _e('Search Results', 'xpress'); ?></h2> 25 25 26 26 <div class="xpress_navigation"> 27 <div class="alignleft"><?php next_posts_link(__('« Older Entries', ' kubrick')) ?></div>28 <div class="alignright"><?php previous_posts_link(__('Newer Entries »', ' kubrick')) ?></div>27 <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div> 28 <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div> 29 29 </div> 30 30 … … 34 34 <div class="post"> 35 35 <?php if (function_exists('hotDates')) { hotDates(); }?> 36 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', ' kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3>36 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'xpress'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3> 37 37 <small><?php the_time('l, F jS, Y') ?></small> 38 38 39 <p class="postmetadata"><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', ' kubrick') . ' ', ', ', '<br />'); ?><?php endif; ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>39 <p class="postmetadata"><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', 'xpress') . ' ', ', ', '<br />'); ?><?php endif; ?> <?php printf(__('Posted in %s', 'xpress'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'xpress'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'xpress'), __('1 Comment »', 'xpress'), __('% Comments »', 'xpress'), '', __('Comments Closed', 'xpress') ); ?></p> 40 40 </div> 41 41 … … 43 43 44 44 <div class="xpress_navigation"> 45 <div class="alignleft"><?php next_posts_link(__('« Older Entries', ' kubrick')) ?></div>46 <div class="alignright"><?php previous_posts_link(__('Newer Entries »', ' kubrick')) ?></div>45 <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'xpress')) ?></div> 46 <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'xpress')) ?></div> 47 47 </div> 48 48 49 49 <?php else : ?> 50 50 51 <h2 class="center"><?php _e('No posts found. Try a different search?', ' kubrick'); ?></h2>51 <h2 class="center"><?php _e('No posts found. Try a different search?', 'xpress'); ?></h2> 52 52 <?php include (get_template_directory() . '/searchform.php'); ?> 53 53
Note: See TracChangeset
for help on using the changeset viewer.