• I’ve registered the following taxonomy

    register_taxonomy('contact_coverage', ['page'], [
                'labels' => [
                    'name'          => 'Coverage Areas',
                    'singular_name' => 'Coverage Area',
                ],
                'heirachical'       => true,
                'show_ui'           => true,
                'show_admin_column' => true,
            ]);

    However the “Taxonomy Order” is not showing up under “Pages” in the admin menu.

    https://wordpress.org/plugins/taxonomy-terms-order/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author nsp-code

    (@nsp-code)

    Try to remove the brackets, e.g.

    register_taxonomy(‘contact_coverage’, ‘page’, ..

    I’m having a similar issue. I have a registered taxonomy but the taxonomy order is not showing up. It does for other taxonomies. I also have the post reorder installed and it is showing up under it. Please advise. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Taxonomy Order not showing up under Pages’ is closed to new replies.