Make WordPress Core

Opened 4 years ago

Last modified 4 years ago

#50444 new defect (bug)

Issue by taxonomy terms in quick edit

Reported by: markusfroehlich's profile markusfroehlich Owned by:
Milestone: Awaiting Review Priority: normal
Severity: normal Version: 5.4.2
Component: Taxonomy Keywords:
Focuses: administration Cc:

Description

When a taxonomy is registered and the paramters are:
show_ui => false
show_in_quick_edit => true

The terms in the admin post quick edit will not be filled out.

Change History (5)

#1 @arpitgshah
4 years ago

Can you please show me the screenshot of your admin panel?

Thanks,
Arpit G Shah

#2 @markusfroehlich
4 years ago

<?php
register_taxonomy(
     'weather',
     array('post'),
     array(
     'labels'                => array(
          'name'                  => 'Weather',
          'all_items'             => 'All weather types',
     ),
     'hierarchical'          => true,
     'show_ui'               => false,
     'show_in_nav_menus'     => false,
     'show_admin_column'     => true,
     'show_in_quick_edit'    => true,
     'rewrite'               => false,
     'public'                => false,
     )
);

https://i.ibb.co/DR4w35t/Anmerkung-2020-06-22-103406.png
https://i.ibb.co/zXtxDdP/Anmerkung-2020-06-22-103433.png

#3 @SergeyBiryukov
4 years ago

  • Component changed from General to Taxonomy
  • Focuses administration added

This ticket was mentioned in Slack in #core by xhtmlpoint. View the logs.


4 years ago

#5 @sabernhardt
4 years ago

Related/duplicate: #49701

Note: See TracTickets for help on using tickets.