标签: wordpress
我有一个基于WordPress的博客,我想删除精选图片。
.single-post .attachment-post-thumbnail { display: none; }
我无法在single.php或任何CSS文件中找到上述代码。现在我不知道如何删除特色图片。
single.php
http://www.blogginggadgets.com/xiaomi-redmi-note-prime-price-specifications-features-review/
答案 0 :(得分:0)
尝试添加此内容:
.article-featured-image { display: none !important; }
看起来像这样:
答案 1 :(得分:0)
将此代码添加到functions.php,它会删除该要素图片。
functions.php
add_filter( 'wp_head', 'filter_function_name' ); function filter_function_name(){ echo '<style>.article-featured-image{display: none!important;}</style>'; }