Skip to content

Instantly share code, notes, and snippets.

Created October 16, 2017 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/358fb0606c3c2bb892d5ef7d6d9c8151 to your computer and use it in GitHub Desktop.
Save anonymous/358fb0606c3c2bb892d5ef7d6d9c8151 to your computer and use it in GitHub Desktop.
<?php
/**
* The template for displaying all single posts.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Magazine_Plus
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'single' ); ?>
<?php
// Previous/next post navigation.
the_post_navigation( array(
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'magazine-plus-pro' ) . '</span> ' .
'<span class="screen-reader-text">' . __( 'Next post:', 'magazine-plus-pro' ) . '</span> ' .
'<span class="post-title">%title</span>',
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'magazine-plus-pro' ) . '</span> ' .
'<span class="screen-reader-text">' . __( 'Previous post:', 'magazine-plus-pro' ) . '</span> ' .
'<span class="post-title">%title</span>',
) );
?>
<?php
/**
* Additional Adroater Plugin Function
*
* @acces Magezine Plus Pro Child theme.
*
*/
if( function_exists('adrotate_group') ) :
echo adrotate_group(3);
endif;
?>
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
<?php endwhile; // End of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php
/**
* Hook - magazine_plus_action_sidebar.
*
* @hooked: magazine_plus_add_sidebar - 10
*/
do_action( 'magazine_plus_action_sidebar' );
?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment