启用特色图像但不让其显示?

时间:2012-02-11 作者:CyberMew

我正在WordPress 3.3.1上使用最新的默认值2111

My Site Currently

我的帖子有一个特色图片(我指的是较小的一个),我不希望它出现在我的帖子中。在有人点击之前,它已经出现在我的外部帖子中。

在上面的图片中,我还指出了2,它显示在一个灯箱中,但已经关闭,所以请忽略它。

如果您能帮我删除帖子上显示的特色图片,我将不胜感激。谢谢

2 个回复
SO网友:Ian Dunn

TwentyEleven包括标题中的特色图像。php,而不是像大多数主题那样的模板部分。如果您注释掉第92行,则应将其删除,例如。

<?php
    // The header image
    // Check if this is a post or page, if it has a thumbnail, and if it\'s a big one
    if ( is_singular() &&
            has_post_thumbnail( $post->ID ) &&
            ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), array( HEADER_IMAGE_WIDTH, HEADER_IMAGE_WIDTH ) ) ) &&
            $image[1] >= HEADER_IMAGE_WIDTH ) :
        // Houston, we have a new header image!
        // echo get_the_post_thumbnail( $post->ID, \'post-thumbnail\' );
    else : ?>
    <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" />
<?php endif; // end check for featured image or standard header ?>
但是,最好创建一个child theme 并放置标题的修改版本。里面有php。

SO网友:CyberMew

经过一段时间的盲目挖掘,看来我找到了解决方法。这不是主题的错。

我只是通过进入/wp-content/plugins/wordpress-ecommerce/marketpress.php

转到功能product_theme($content)

并注释掉了第1411行:

//add thumbnail
//$content = mp_product_image( false, \'single\' ) . $content;
塔达!

结束

相关推荐