УБРАТЬ ССЫЛКИ на предыдущую и следующую запись WORDPRESS
-
искал код в single.php
не нашел! возможно есть какой-то плагин который забирает это
вот сам код single.php
—————————————————
<?php
/**
* The template for displaying all single posts.
*
* @package 8Medi Lite
*/get_header(); ?>
<div class=»ed-container»>
<?php
global $post;
$sidebar = get_post_meta($post->ID, ‘eightmedi_lite_sidebar_layout’, true);
if($sidebar==’both-sidebar’ || $sidebar==’left-sidebar’){
get_sidebar(‘left’);
}
?>
<div id=»primary» class=»content-area <?php echo esc_attr($sidebar);?>»>
<main id=»main» class=»site-main» role=»main»><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘template-parts/content’, ‘single’ ); ?>
<?php the_post_navigation(); ?>
<?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
if($sidebar==’both-sidebar’ || $sidebar==’right-sidebar’ ){
get_sidebar(‘right’);
}
?>
</div>
<?php get_footer(); ?>
——————————————-
- Тема «УБРАТЬ ССЫЛКИ на предыдущую и следующую запись WORDPRESS» закрыта для новых ответов.