有一些关于此的帖子,但解决方案对我不起作用..
我将非常感谢您的帮助..
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);
答案 0 :(得分:-1)
您也可以使用css隐藏特定帖子的精选图片
等
#(here your id of your post)img {
display : none;
}
OR
#(here your id of your post)img {
visibility : hidden;
}