如何在Wordpress Single Post页面中隐藏特色图像?

时间:2013-09-16 11:51:35

标签: image wordpress featured

有一些关于此的帖子,但解决方案对我不起作用..

我将非常感谢您的帮助..

hier是代码@ my single.php

<?php echo '<div class="thecontent">' . apply_filters('the_content', get_the_content()) . '</div>';

我试过这个,但我不知道如何更换代码?

echo preg_replace('/<img[^>]+\>/i', '', get_the_content(), 1);

1 个答案:

答案 0 :(得分:-1)

您也可以使用css隐藏特定帖子的精选图片

#(here your id of your post)img {
display : none;
}

OR

  #(here your id of your post)img {
    visibility : hidden;
    }