Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Template Part for displaying post navigation.
  4. *
  5. * For the full license information, please view the Licensing folder
  6. * that was distributed with this source code.
  7. *
  8. * @package Bimber_Theme 4.10
  9. */
  10.  
  11. // Prevent direct script access.
  12. if ( ! defined( 'ABSPATH' ) ) {
  13. die( 'No direct script access allowed' );
  14. }
  15.  
  16. ?>
  17. <nav class="g1-nav-single">
  18. <div class="g1-nav-single-inner">
  19. <p class="g1-single-nav-label"><?php esc_html_e( 'See more', 'bimber' ); ?></p>
  20. <ul class="g1-nav-single-links">
  21. <li class="g1-nav-single-prev"><?php previous_post_link( '%link', '<strong>' . esc_html__( 'Previous article', 'bimber' ) . '</strong> <span class="g1-gamma g1-gamma-1st">Previous article</span>' ); ?></li>
  22. <li class="g1-nav-single-next"><?php next_post_link( '%link', '<strong>' . esc_html__( 'Next article', 'bimber' ) . '</strong> <span class="g1-gamma g1-gamma-1st">Next article</span>' ); ?></li>
  23. </ul>
  24. </div>
  25. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement