如何删除帖子上的wordpress特色图片

时间:2015-08-28 05:32:27

标签: wordpress reference custom-post-type featured

我在家里使用Hueman wordpress主题。我想在帖子上显示精选图片,但我不希望在一个帖子中显示该图像。

任何人都可以帮忙吗?这是link

1 个答案:

答案 0 :(得分:0)

我认为您想要自定义单个帖子详细信息页面。 所以,转到single.php。 通常这个文件位于你的主题路径中,如下所示。

www.domain.com/wp-content/themes/your-theme-name/

转到上面的路径并打开single.php。在此删除下面的代码get_template_part( 'content', get_post_format() );并将其替换为

 the_title();    //For Post Title 
 the_content();  //For Content of the post

如果您想添加图片,请使用the_post_thumbnail( 'single-post-thumbnail');