据我所知,您想删除图片上用红色勾勒的整个部分吗?
要执行此操作,请进入管理>外观>编辑器。然后在右边找到家。php并单击它来编辑文件。
从文件中删除以下代码,然后单击“更新文件”保存。。。
<?php if ( !have_posts() ) : ?>
<div class="alert">
<?php esc_html_e( \'Sorry, no results were found.\', \'virtue\' ); ?>
</div>
<?php get_search_form();
endif;
if( $summary == \'full\' ){
while (have_posts()) : the_post();
get_template_part( \'templates/content\', \'fullpost\' );
endwhile;
} else {
while (have_posts()) : the_post();
get_template_part( \'templates/content\', get_post_format() );
endwhile;
}
/**
* @hooked virtue_pagination - 10
*/
do_action( \'virtue_pagination\' );
?>
Important Note
这将直接对主题进行编辑。更好的方法是
CHILD THEME, 然后在那里编辑文件。这将防止主题更新时丢失任何编辑。