设置特征图像而不在帖子中显示它

时间:2017-07-20 11:40:59

标签: php wordpress

我想设置精选图片,但我不喜欢它进入我的帖子 只是我想在我的主页上看到它作为我的帖子的广告 我该怎么做 ?它来自我的single.php
这是我的single.php

<?php
    /**
     * @package WordPress
     * @subpackage Wheels
     */
    $is_boxed = school_time_get_option( 'single-post-is-boxed', false );
    if ( $is_boxed ) {
        get_header( 'boxed' );
    } else {
        get_header();
    }
    ?>
    <?php get_template_part( 'templates/title' ); ?>
    <div class="<?php echo school_time_class( 'main-wrapper' ) ?>">
        <div class="<?php echo school_time_class( 'container' ); ?>">
            <?php if ( school_time_get_option( 'single-post-sidebar-left', false ) ): ?>
                <div class="<?php echo school_time_class( 'sidebar' ) ?>">
                    <?php get_sidebar(); ?>
                </div>
                <div class="<?php echo school_time_class( 'content' ) ?>">
                    <?php get_template_part( 'templates/content-single' ); ?>
                </div>
            <?php else: ?>
                <div class="<?php echo school_time_class( 'content' ) ?>">
                    <?php get_template_part( 'templates/content-single' ); ?>
                </div>
                <div class="<?php echo school_time_class( 'sidebar' ) ?>">
                    <?php get_sidebar(); ?>
                </div>
            <?php endif; ?>
        </div>
    </div>
    <?php
    if ( $is_boxed ) {
        get_footer( 'boxed' );
    } else {
        get_footer();
    }
    ?>

这是index.php

<?php
/**
 * @package WordPress
 * @subpackage Wheels
 */
get_header();
?>
<?php get_template_part( 'templates/title' ); ?>
<div class="<?php echo school_time_class( 'main-wrapper' ) ?>">
	<div class="<?php echo school_time_class( 'container' ) ?>">
		<div class="<?php echo school_time_class( 'content' ) ?>">
			<?php if ( have_posts() ): ?>
				<?php while ( have_posts() ) : the_post(); ?>
					<?php get_template_part( 'templates/content', get_post_format() ); ?>
				<?php endwhile; ?>
			<?php else: ?>
				<?php get_template_part( 'templates/content', 'none' ); ?>
			<?php endif; ?>
			<div class="<?php echo school_time_class( 'pagination' ) ?>">
				<?php school_time_pagination(); ?>
			</div>
		</div>
		<div class="<?php echo school_time_class( 'sidebar' ) ?>">
			<?php get_sidebar(); ?>
		</div>
	</div>
</div>
<?php get_footer(); ?>

2 个答案:

答案 0 :(得分:0)

在模板目录下会有content-single.php找到...检查img标签并注释img标签然后尝试.... 如果它没有发布content-single.php文件代码。

答案 1 :(得分:0)

你可以试试这个插件&amp;然后编辑你的帖子&amp;在特色图片下方,您将获得隐藏/显示的选项。

https://wordpress.org/plugins/hide-featured-image/