Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何删除帖子上的wordpress特色图片_Wordpress_Reference_Custom Post Type_Featured - Fatal编程技术网

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

如何删除帖子上的wordpress特色图片,wordpress,reference,custom-post-type,featured,Wordpress,Reference,Custom Post Type,Featured,我在家里使用Hueman wordpress主题。我想在帖子上显示特色图片,但我不想在单个帖子中显示该图片 有人能帮忙吗?这是我想你想定制一篇文章的详细信息页面。 因此,转到single.php。 通常,该文件位于主题路径中,如下所示 www.domain.com/wp-content/themes/your-theme-name/ 转到上面的路径并打开single.php。在这种情况下,删除下面的代码get_template_部分('content',get_post_format())并将

我在家里使用Hueman wordpress主题。我想在帖子上显示特色图片,但我不想在单个帖子中显示该图片


有人能帮忙吗?这是

我想你想定制一篇文章的详细信息页面。 因此,转到single.php。 通常,该文件位于主题路径中,如下所示

www.domain.com/wp-content/themes/your-theme-name/
转到上面的路径并打开single.php。在这种情况下,删除下面的代码
get_template_部分('content',get_post_format())并将其替换为

 the_title();    //For Post Title 
 the_content();  //For Content of the post
如果要添加图像,请使用“发布”缩略图(“单个发布缩略图”);

为什么不在支持论坛上提问?检查single.php文件,搜索图像所在的容器并将其删除。