• Resolved satococoa730

    (@satococoa730)


    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)
  • Plugin Author Marcel Pol

    (@mpol)

    Hi,
    Yes, there is no way to hook into the post edit screen. There is no filter being used.

    Re-registerering the taxonomy should do it, but I would think it is bad practice to do that in the plugin. Not every user would want this. For custom code on an individual website it will mostly be fine.

Viewing 1 replies (of 1 total)
  • The topic ‘Sorting is not reflected on the post edit screen’ is closed to new replies.