一种方法是只需隐藏“上载/插入媒体”按钮,然后为主题帖子添加特色图像支持,这样用户仍然可以将图像附加到帖子。
在以下位置隐藏主题的上载/插入媒体按钮:functions.php:
function hideUploadInsert($hook)
{
if($hook != \'post.php\' AND $hook != \'post-new.php\')
return; // if not in the edit or new admin pages, for Posts or Pages, then do nothing.
echo \'<style type="text/css" media="screen">
#wp-content-media-buttons {
display: none;
}
</style>\';
}
add_action(\'admin_enqueue_scripts\', \'hideUploadInsert\');
将特色图像支持添加到主题帖子中:
functions.phpadd_theme_support(\'post-thumbnails\', array( \'post\' ));
EDIT:
我不知道你指的是在一篇文章中附加多个图像。您可以使用我上面提供的css隐藏将图像插入帖子的按钮,然后使用google搜索中出现的一个插件将多个特色图像附加到帖子:
https://www.google.ca/search?q=wordpress+multiple+featured+images