Sorting is not reflected on the post edit screen
-
The tag page seemed to reflect the sort,but Sorting is not reflected on the post edit screen
function re_register_post_tag_taxonomy() { $tag_slug_args = get_taxonomy('post_tag'); $tag_slug_args->hierarchical = true; $tag_slug_args->meta_box_cb = 'post_categories_meta_box'; register_taxonomy('post_tag', 'post', (array) $tag_slug_args); } add_action( 'init', 're_register_post_tag_taxonomy', 1 );
This code is to display the tag on the post edit screen.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Sorting is not reflected on the post edit screen’ is closed to new replies.