• Resolved fburatti

    (@fburatti)


    I read the documentation and know this limit, but I try to ask it ??

    Is there a way to make non-public taxonomy orderable?
    Is there a filter to manually add this taxonomy?
    I need to reorder a taxonomy used only in wordpress admin.

    thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Marcel Pol

    (@mpol)

    It is still a good question ??

    Do you generate the taxonomy in your own code? You could use different parameters for public, depending on the wp-admin or frontend.

    Like:

    if ( is_admin() ) {
        register_taxonomy( array('public' => true));
    } else {
        register_taxonomy( array('public' => false));
    }

    This is just some psudocode, but I hope you get the idea.

    If it is not made in your own code, you can still re-register the taxonomy in your own code. Just make sure you are later then the original code, and it is only re-registered on is_admin.

    Do you manage?

Viewing 1 replies (of 1 total)
  • The topic ‘Non-public taxonomy’ is closed to new replies.