Advertisement
cyberdev

Untitled

Jul 6th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.39 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
  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.             <?php $post = get_previous_post();  if ( ! empty( $post ) ) : setup_postdata( $post ); ?><li class="g1-nav-single-prev" style="background-image:url('<?php the_post_thumbnail_url( 'bimber-grid-fancy' ); ?>');background-size: cover;"><?php endif; wp_reset_postdata();?><?php previous_post_link( '%link', '<strong>' . esc_html__( 'Previous article', 'bimber' ) . '</strong>  <span class="g1-gamma g1-gamma-1st">%title</span>' ); ?></li>
  22.             <?php $post = get_next_post();  if ( ! empty( $post ) ) : setup_postdata( $post ); ?><li class="g1-nav-single-next" style="background-image:url('<?php the_post_thumbnail_url( 'bimber-grid-fancy' ); ?>');background-size: cover;"><?php endif; wp_reset_postdata();?><?php next_post_link( '%link', '<strong>' . esc_html__( 'Next article', 'bimber' ) . '</strong> <span class="g1-gamma g1-gamma-1st">%title</span>' ); ?></li>
  23.         </ul>
  24.     </div>
  25. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement