In admin grid for post taxonomy, if I’ll click on “Items” link, I’ll get all post, associated with this taxonomy /wp-admin/edit.php?category_name=test. But this won’t work for taxonomy for Custom Post Type. For example, /wp-admin/edit.php?cpt=test&post_type=cpt displaying 0 items.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
The correct link should look like this:
/wp-admin/edit.php?{taxonomy_slug}={term_slug}&post_type={cpt_slug}
For example.
If you have taxonomy brand and it has term (category) test, your link will be:
/wp-admin/edit.php?brand=test&post_type=CPT
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0