因为您的主题支持post-formats
.
您可以使用插件(或子主题functions.php
) 要挂接到的文件after_setup_theme
延迟并删除主题支持:
<?php
add_action(\'after_setup_theme\', \'wpse65653_remove_formats\', 100);
function wpse65653_remove_formats()
{
remove_theme_support(\'post-formats\');
}
或者在你的主题
functions.php
文件:
add_theme_support(\'post-formats\');
并将其移除。
第一种选择是更好的选择。将它粘贴到插件中,它也会出现在您使用的下一个主题中。