我想停止对WordPress5管理员中的类别列表进行重新排序。 在WordPress默认情况下,选中的类别在按“更新”按钮后位于顶部。 我要避免这种情况并保持秩序。
//before I want to keep this order
category1
category2
category3 // <-you check this
//after WordPress Default
category3
category1
category2
为避免这种情况,我曾经使用以下功能,我的意思是在“ WordPress5.0”之前,但似乎无法在WordPress5中使用
function my_terms_checklist_arg( $args, $post_id = null ) {
$args['checked_ontop'] = false;
return $args;
}
add_action( 'wp_terms_checklist_args', 'my_terms_checklist_arg' );
希望有人帮助我。
答案 0 :(得分:0)
您可以使用帖子类型排序插件,因为只需拖放https://wordpress.org/plugins/post-types-order/
,即可订购页面,帖子,类别或任何帖子类型