Ticket #4397: 4397.diff
| File 4397.diff, 3.4 kB (added by rob1n, 1 year ago) |
|---|
-
wp-content/themes/classic/index.php
old new 27 27 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> 28 28 <?php endif; ?> 29 29 30 <?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page»')); ?>30 <?php posts_nav_link(' — ', __('« Older Posts'), __('Newer Posts »')); ?> 31 31 32 32 <?php get_footer(); ?> -
wp-content/themes/default/search.php
old new 7 7 <h2 class="pagetitle">Search Results</h2> 8 8 9 9 <div class="navigation"> 10 <div class="alignleft"><?php next_posts_link('« PreviousEntries') ?></div>11 <div class="alignright"><?php previous_posts_link('Ne xtEntries »') ?></div>10 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> 11 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> 12 12 </div> 13 13 14 14 … … 24 24 <?php endwhile; ?> 25 25 26 26 <div class="navigation"> 27 <div class="alignleft"><?php next_posts_link('« PreviousEntries') ?></div>28 <div class="alignright"><?php previous_posts_link('Ne xtEntries »') ?></div>27 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> 28 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> 29 29 </div> 30 30 31 31 <?php else : ?> -
wp-content/themes/default/index.php
old new 20 20 <?php endwhile; ?> 21 21 22 22 <div class="navigation"> 23 <div class="alignleft"><?php next_posts_link('« PreviousEntries') ?></div>24 <div class="alignright"><?php previous_posts_link('Ne xtEntries »') ?></div>23 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> 24 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> 25 25 </div> 26 26 27 27 <?php else : ?> -
wp-content/themes/default/archive.php
old new 23 23 24 24 25 25 <div class="navigation"> 26 <div class="alignleft"><?php next_posts_link('« PreviousEntries') ?></div>27 <div class="alignright"><?php previous_posts_link('Ne xtEntries »') ?></div>26 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> 27 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> 28 28 </div> 29 29 30 30 <?php while (have_posts()) : the_post(); ?> … … 43 43 <?php endwhile; ?> 44 44 45 45 <div class="navigation"> 46 <div class="alignleft"><?php next_posts_link('« PreviousEntries') ?></div>47 <div class="alignright"><?php previous_posts_link('Ne xtEntries »') ?></div>46 <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> 47 <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> 48 48 </div> 49 49 50 50 <?php else : ?>
