There’s no such page in WordPress. /issues/
doesn’t exist. All WordPress URLs display either a single post/page, or a list of posts/pages (search, date archives, category archives etc.). So there’s no way WordPress will list terms. If you create a new issue, then that will be accessible at /issues/issue-name/
, but nothing will exist on /issues/
by itself.
If you want to list all issues, then the simplest method would be to create a page called Issues, then create a custom page template that lists all terms in the Issues taxonomy. You can do this with get_terms()
:
$issues = get_terms( [ 'taxonomy' => 'issues' ] );
if ( ! is_wp_error( $issues ) && $issues ) {
foreach( $issues as $issue ) {
echo $issue->name; // Name of issue.
echo get_term_link( $issue ); // URL to articles in that issue.
}
}
Related Posts:
- How to get a list of term names of the custom post type im currently on in single.php
- Get all taxonomies for all post types
- Order WordPress Custom Taxonomy Pages & Pagination Not Working
- How to filter out post type meta?
- Get Post Primary Category
- Custom query to filter posts that have current post as a taxonomy [closed]
- Why are taxonomy terms not saving when using custom meta boxes with radio button taxonomy selectors?
- Display latest x posts from all categories in Custom Post Type/Taxonomy
- Different Category system needed for the Custom Post Type
- I need to add a filter to prepend the term ‘National – ‘ to the post title if the post is tagged to multiple states
- Pagination hitting 404 page on /page/4
- Query custom post types & Taxonomies and list them in a table on a page
- Using page title as a link to term archive
- How to get post count of specific taxonomy that have store name & category
- Page that lists publications by classifying them by taxonomy
- Filter taxonomy by CPT
- Taxonomies are not showing in the category dropdown
- Custom Taxonomy – fields
- tax_query not working?
- Custom Search not working
- Looping taxonomy in taxonomy?
- Blog page showing same content as homepage
- Have a Custom Post Type index page display taxonomy items instead of posts
- Custom Post Type Taxonomies -Posts not showing in Category or Tag pages
- Problem with custom post types, taxonomy and permalinks
- How to create new category for custom post type?
- Using several custom fields as custom post title
- Custom Post Type without an archive page
- Fetch taxonomies by custom post type id array
- Get rewrite slug of custom post type in template
- Show Different Header on a Specific Post ID
- How to check the terms in single custom post type template
- Weird problem happening with custom taxonmy when creating/updating posts
- get_terms showing all categories instead of the ones assigned to a specific post
- Create Custom Post Type Permalink Structure
- A good strategy to print custom posts (offer) that are checked inside the metabox of a post?
- How can I move a custom taxonomy and its data from one post type to another?
- Conditional regex in add_rewrite_rule() for specific query filters & pagination
- Hierarchical Custom Post Types – Show only parent on tax archive?
- Admin notice not displaying
- Custom page template for category taxonomy
- How can I display an archive of only one category of my custom post type?
- Pagination is not working on single-{slug}.php but works fine on page-{slug}.php
- Can’t get order_by meta_value_num to work properly
- Create custom post type on successful woocommerce order [closed]
- How to get the post type from a category id?
- Custom Post type is being ignored in query
- Adding custom tables to WordPress
- Hide specific parent categories from post edit
- Taxonomy Archive: Display only one post per term from separate custom taxonomy
- Metadata for a taxonomy – is there any WordPress way of doing this?
- Why does querying on post_tags (which has been applied to custom post types) only return posts?
- Query Multiple Taxominies Across Multiple Post type’s
- Very Slow Page – How to Optimize # of Queries?
- Change or update WordPress loop based on dropdown selection
- Dynamic page outside WordPress
- Using wordpress template tags within an array
- How to display Custom Post Type Post based on Tag with Shortcode Parameter?
- Order By Post Type ThenBy Taxonomy
- Getting the URL of the parent page
- How to show CPTs in term archive
- Custom post type permalink returns bad url
- How do I get array of types associated with a taxonomy?
- Return the thumbnail meta data for getter and setter
- How to display selected taxonomies by their parent
- Custom Field Order by Last Name and First Name
- Pagination for custom php code
- get_posts of Custom Post Type AND Custom Taxonomy
- Tag page with Custom Post Types not returning any posts
- What’s the difference between same wp functions get_posts(); functions in different form?
- wp_set_object_terms() not adding new term to custom post and custom taxonomy
- Changing number of posts per page on CPT-archive.php, have tried 20-30 code chunks so far
- Display all posts in main category and 1 subcategory
- Custom Post Type Loop throws 500 error when used in widget
- how to check if custom post type column already exists?
- Update permalinks when new category added to custom post type taxonomy
- Get posts from a custom post type by child categories of a parent category
- Received nothing after executing AJAX post function
- How to make sure content doesn’t display if selection is empty
- Show category ID on custom post type
- Custom Post-Type not in admin menu
- get the custom post type title/name
- wp_get_post_terms on custom post type with custom taxonomies returning an empty array
- Page vs Custom Post Types Differences/Issues
- If post has custom field then display css-class
- Push metadata in array
- How to customize a permalink (URL) structure?
- Troubles with saving metabox
- CPT + CMB2: data not displaying for only first post in loop
- How to make a field appear only if a post meta field has a defined value?
- Replace text in post from cvs
- Get parent categories of custom post type
- Custom Taxonomies not appearing in Admin
- Can I list a custom post type within another custom post type in the admin area?
- Get custom post type list for every category shortcode
- How do i calculate the total of values of custom fields in custom post types?
- Custom Post Type Set Comments ON by default without show METABOX
- Custom Post Type Taxonomy Filters
- How do I do this with WordPress? Taxonomies?
- I would like to have different styles for my posts based on the content of each post