我知道你可能已多次回答过这个问题,但我不能在你的案例中使用你的建议。
我在我的博客上有Blu Chic的Adelle主题(现在我只是测试不同的功能并在我自己的托管上移动我的博客之前进行更改)。我在archive.php中进行了相同的更改,以更改帖子在类别和存档中的显示方式。
<div style="height:251px; display:block; margin:0 0 20px 0;"><h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php echo get_the_post_thumbnail( $post_id, array(174,251), array('class' => 'alignleft'), $attr ); ?> </a><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title();?> </a></h3>
<?php the_excerpt(); ?></div>
我工作但是...在编辑新帖子时我必须设置精选/缩略图。这不是一个问题。问题显示在第一页,因为现在我有2个图像 - 一个小图像和一个大图像。是否可以删除主页上的帖子缩略图?
我非常感谢你的帮助!
最佳,
KASIA
答案 0 :(得分:1)
您只需要在主页上找到属于那些缩略图的CSS类,然后在其他CSS中添加CSS属性即可。
display: none
有关屏幕截图,您可以查看以下指南:https://www.helpmegeek.com/remove-featured-thumbnails-list-pages-wordpress/
答案 1 :(得分:0)
如果您要求为帖子使用两个图片,一个在主页上是归档页面,另一个在帖子详细信息页面上,您可以使用一个最佳插件
http://wordpress.org/plugins/multiple-post-thumbnails/
通过使用多个缩略图插件,您可以看到两个特色图片,一个可以显示在主页面上,另一个可以显示在帖子详细信息页面上,或者您想要显示的任何一个部分。
答案 2 :(得分:0)
如果你想删除缩略图,只需删除/注释掉显示缩略图的php代码,如下所示:
<div style="height:251px; display:block; margin:0 0 20px 0;">
<h3>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php //echo get_the_post_thumbnail( $post_id, array(174,251), array('class' => 'alignleft'), $attr ); ?> <!-- Notice the // just after the first <?php tag
</a>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
<?php the_title();?>
</a>
</h3>
</div>