默认情况下,如果当前类型的任何帖子已经具有与之关联的帖子格式,则无论主题是否支持帖子格式,都会显示过滤器。
我们可以从您的屏幕截图中看到,帖子已经有了帖子格式,因此会显示过滤器。
下面是允许您禁用Post格式筛选器的代码:
/**
* Filters whether to remove the \'Formats\' drop-down from the post list table.
*
* @param bool $disable Whether to disable the drop-down. Default false.
*/
add_filter( \'disable_formats_dropdown\', \'__return_true\', 10, 1 );
查找这样的过滤器的一个好方法是检查呈现页面的HTML,然后在WP源中搜索与要更改的功能相关的HTML类名(或其他标记)。
例如,我搜索filter-by-format
找到了disable_formats_dropdown
筛选输入formats_dropdown()
在里面wp-admin/includes/class-wp-posts-list-table.php
.