如何从侧边菜单中删除/隐藏“特色图像”选项

时间:2017-02-14 作者:Odette

我想删除特色图像的菜单项。我不想在帖子中添加任何特色图片,所以我想阻止我的用户添加任何。

如何删除/隐藏从侧边菜单添加特色图像的链接。

WP 4.7.2

提前谢谢。

enter image description here

1 个回复
最合适的回答,由SO网友:Nathan Johnson 整理而成

在你的主题或父主题的某个地方,有这样一行:

add_theme_support( \'post-thumbnails\' );
如果它在你的子主题中,你可以简单地删除它。如果它位于父主题中,则可以将其添加到子主题函数中。php文件。

// in your Child Theme\'s functions.php    

// Use the after_setup_theme hook with a priority of 11 to load after the
// parent theme, which will fire on the default priority of 10
add_action( \'after_setup_theme\', \'remove_featured_images_from_child_theme\', 11 ); 

function remove_featured_images_from_child_theme() {

    // This will remove support for post thumbnails on ALL Post Types
    remove_theme_support( \'post-thumbnails\' );

    // Add this line in to re-enable support for just Posts
    add_theme_support( \'post-thumbnails\', array( \'post\' ) );
}

https://codex.wordpress.org/Function_Reference/remove_theme_support

相关推荐

Remove <p></p> after images

我对<p></p> 出现在my之后的标记<img....>. 以下是我在本地主机上查看生成的页面时显示的内容。。。<img src=\"/wp-content/themes/wunderful/assets/images/feedback-danielle.png\" alt=\"Danielle Johnson Deal Town FC Treasurer\"> <p></p> 请注意随机生成的<p>&