PageRenderTime 44ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/blog/wp-content/themes/extinct/cutline/navigation.php

https://bitbucket.org/sergiohzlz/reportaprod
PHP | 17 lines | 13 code | 4 blank | 0 comment | 2 complexity | fadbfffadb416765e529b06c2f0337e3 MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0, AGPL-1.0, LGPL-2.1
  1. <?php if (is_single()) : ?>
  2. <div class="navigation">
  3. <span class="previous"><?php previous_post_link('&larr; %link') ?></span>
  4. <span class="next"><?php next_post_link('%link &rarr;') ?></span>
  5. </div>
  6. <div class="clear"></div>
  7. <?php else : ?>
  8. <div class="navigation">
  9. <div class="previous"><?php next_posts_link(__('&larr; Older Entries','cutline')) ?></div>
  10. <div class="next"><?php previous_posts_link(__('Newer Entries &rarr;','cutline')) ?></div>
  11. </div>
  12. <div class="clear"></div>
  13. <?php endif; ?>