以下过滤器仅显示页面属性下拉列表中的顶级自定义帖子类型项目(在主编辑屏幕和快速编辑中)。更换\'my_custom_post_type\' 使用自定义帖子类型名称。
function my_test($args) {
global $post_type_object;
if ( $post_type_object->name == \'my_custom_post_type\') {
$args[\'depth\'] = 1;
}
return $args;
}
add_filter(\'page_attributes_dropdown_pages_args\',\'my_test\');
add_filter(\'quick_edit_dropdown_pages_args\', \'my_test\');