如何让文章页面内不显示特色图片

请教:如何让文章页面内不显示特色图片,只显示在首页
 
我的主题single.php代码如下:
 
<?php
/**
* The template for displaying all single posts.
*
* @package FlyMag
*/

get_header(); ?>

<?php if ( get_theme_mod('fullwidth_single', 0) == 1 ) {
$layout = 'fullwidth';
} else {
$layout = '';
} ?>

<div id="primary" class="content-area <?php echo $layout; ?>">
<main id="main" class="site-main" role="main">

<?php while ( have_posts() ) : the_post(); ?>

<?php get_template_part( 'content', 'single' ); ?>

<?php flymag_post_nav(); ?>

<?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 ( get_theme_mod('fullwidth_single', 0) != 1 ) {
get_sidebar();
}
?>
<?php get_footer(); ?>

 
已邀请:

帅帅的小鑫

赞同来自:

这个要修改模板的function.php文件的,或者编辑sing的输出代码

[已注销]

赞同来自:

zsvsdn

要回复问题请先登录注册