wordpress文章中特色图片显示在文章上边怎么去除

常用技巧 管理员 3个月前 (10-26) 35次浏览 0个评论

在WordPress中,特色图片通常是指文章中使用的第一张图片,这张图片可以在文章页面顶部显示。如果你想去除这个特色图片的显示,可以通过以下方法:

  1. 通过子主题的 functions.php 文件添加过滤器来移除特色图片。

     

    // 移除特色图片
    add_filter( 'get_the_post_thumbnail', 'remove_featured_image' );
    function remove_featured_image() {
        return '';
    }
    
  1. 使用 post-thumbnail 的 disabled 类来覆盖默认的特色图片显示。

在你的子主题的 functions.php 文件中添加以下代码:
// 通过CSS类来覆盖特色图片
add_filter( ‘post_thumbnail_html’, ‘disable_featured_image_html’, 10, 3 );
function disable_featured_image_html( $html, $post_id, $post_thumbnail_id ) {
return ‘<div class=”post-thumbnail disabled”></div>’;
}

 

以上两种方法都可以去除WordPress文章中的特色图片显示。第一种方法是完全移除特色图片功能,第二种方法是通过CSS覆盖特色图片的显示。根据你的需求选择合适的方法。

喜欢 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址