WP 3.7.0之后的下拉日期有一个过滤器(抱歉,我没有检查其他的,但我假设他们也有过滤器)。
过滤器为:months_dropdown_results
下面的示例删除了管理页面过滤器中的日期下拉列表,但没有删除帖子的日期下拉列表。
function remove_date_drop(){
$screen = get_current_screen();
if ( \'page\' == $screen->post_type ){
add_filter(\'months_dropdown_results\', \'__return_empty_array\');
}
}
add_action(\'admin_head\', \'remove_date_drop\');