![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/themes/bugster/ |
<?php /** * The template to display the attachment * * @package WordPress * @subpackage BUGSTER * @since BUGSTER 1.0 */ get_header(); while ( have_posts() ) { the_post(); get_template_part( apply_filters( 'bugster_filter_get_template_part', 'content', get_post_format() ), get_post_format() ); // Parent post navigation. $bugster_posts_navigation = bugster_get_theme_option( 'posts_navigation' ); if ( 'links' == $bugster_posts_navigation ) { ?> <div class="nav-links-single<?php if ( ! bugster_is_off( bugster_get_theme_option( 'posts_navigation_fixed' ) ) ) { echo ' nav-links-fixed fixed'; } ?>"> <?php the_post_navigation( array( 'prev_text' => '<span class="nav-arrow"></span>' . '<span class="meta-nav" aria-hidden="true">' . esc_html__( 'Published in', 'bugster' ) . '</span> ' . '<span class="screen-reader-text">' . esc_html__( 'Previous post:', 'bugster' ) . '</span> ' . '<h5 class="post-title">%title</h5>' . '<span class="post_date">%date</span>', ) ); ?> </div> <?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(); } } get_footer();