我想设置帖子缩略图,但不将其设置为特色图像。我的网站是https://www.shockinpoop.com/. 如果可以的话,请打开任何一篇文章,你会看到特色图片显示了两次。一个在文章标题之前,一个紧跟在文章标题之后。但我想让它看起来像这样https://www.shockinpoop.com/life-2/tyler-durden-was-right-all-along/. 我想显示图像after 这篇文章的标题。我能做到这一点的唯一方法是删除特色图片,但这会从我的主页中删除帖子缩略图。此外,当我使用“添加媒体”按钮在帖子中插入图像时,我的主题会自动将图像附加到帖子中。这会导致图像出现两次。如果我不能解释我自己,我非常抱歉。我只想将帖子的第一张图片用作帖子缩略图,而不想将其用作特色图片。我认为这可以通过php完成,尽管我不确定。非常感谢您的帮助。非常感谢。这是单曲的完整代码。php
<?php while ( have_posts() ) : the_post(); ?>
<?php
/**
* Allow for changing the template partial.
*
* @since 1.2.3.
*
* @param string $type The default template type to use.
* @param WP_Post $post The post object for the current post.
*/
$template_type = apply_filters( \'make_template_content_single\', \'single\', $post );
get_template_part( \'partials/content\', $template_type );
?>
<?php get_template_part( \'partials/nav\', \'post\' ); ?>
<?php get_template_part( \'partials/content\', \'comments\' ); ?>
<?php endwhile; ?>
最合适的回答,由SO网友:terminator 整理而成
您可以使用css暂时隐藏其中一个图像,直到您找到它为止。因为从上面的代码中没有什么是清楚的
将这些线条添加到您的样式中。css
.entry-header figure{
display: none !important;
}
刷新缓存,问题就会得到解决