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?
- Custom taxonomy not showing up when adding a new custom post type
- show tags of custom post type ONLY
- Create an archive page for custom taxonomies
- Categories under custom post types doesn’t show properly
- Rewrite custom post & taxonomy to share same URL path
- how to use two permalinks for one custom post type
- Add Taxonomy Values Within a Custom Post Type RSS Feed
- WordPress is executing URL in code when called via wp_mail()
- Relationship between two taxonomies and a custom post type [closed]
- Have a Custom Post Type index page display taxonomy items instead of posts
- Using several custom fields as custom post title
- 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
- Metadata for a taxonomy – is there any WordPress way of doing this?
- Return the thumbnail meta data for getter and setter
- how to check if custom post type column already exists?
- Custom Post-Type not in admin menu
- Page vs Custom Post Types Differences/Issues
- Can I list a custom post type within another custom post type in the admin area?
- I would like to have different styles for my posts based on the content of each post
- How to display custom taxonomies with links in filter menu?
- Set URL link to featured image of custom post type
- How do I add a custom screen for a custom post type to be called from custom post row action?
- Show child custom post types list inside single parent custom post type
- Several post types on WP Query by tag and taxonomy
- How to display custom WP menus?
- How do I display the grand child items of a taxonomy term?
- Problems wp_insert_post and save_posts filter
- Unable to link categories to custom post type using standard function
- Cant get paginations on single.php to work with my custom post types
- Enable taxonomies by post type in an array of CPTs
- How can I group posts by months and years?
- Trying to Create a PHP Variable for post_type that can be referenced Site Wide
- Hide specific taxonomies from a taxonomy list using ‘get_object_taxonomies’
- How does the ‘the_post_navigation()’ work for CPT’s?
- Custom post type – list posts based on meta_key and display them divided by CPT taxonomy category
- Not sure why this template for custom post type posts isn’t displaying anything. What’s missing?
- Targeting categories in custom fields
- Saving fields in a drop-down in WordPress
- WordPress: Custom User Role cannot access Custom Post Type | “Sorry, you are not allowed to access this page”
- Query entries from custom post type in an ACF flexible content field
- Template code to split a post and print a custom field?
- Custom Taxonomy Terms in Menu lead to which page?
- Display 1 Post per taxonomy with polylang
- Need help with simple “if statement” checks to output particlular CPT data depending on what client uploads/fills out
- WordPress sitemap with Custom Post Types
- How can I sort the order of multiple custom field values in a custom post type?
- Display All Courses in Course Archive Page
- CPT : Next or Previous term link when has not adjacent post
- php dynamic content inside shortcode
- I want to rewrite the URL of a specific post with a specific custom field to easily analyze in Google Analytics
- Get all post under custom post type grouped by custom filed value in custom taxonomy
- Display Custom Post Type Based on Taxonomy With WP_Query()
- How to add CSS class field in Custom Taxonomy?
- I’m trying to create an if statement that will only display my button link for tickets if its under ‘admission-event’… what is wrong with my code?
- Disable Sidebar on certain pages
- Set a Default CPT taxonomy by taxonomy id
- Show parent category and subcategory once in while loop
- how to create custom taxonomy drop downs for parents and child
- Add other all taxonomies as meta boxes to custom post type
- How to get post type archive category title
- Automatically / dynamically populating tags in custom post type
- How to get the posts that my following users are liked?
- Display related post content and custom field content
- Custom 404 redirect for a luddite
- Organising custom taxonomies and custom post types
- Filter Term By Parent Term – Custom Post Type
- can’t see categories in appearance-menu-categories
- List all posts from custom post type by taxonomy
- WordPress custom field images not getting inserted into array
- Meta-Box to add multiple items one at a time and on publish save all
- Values inside a custom field to determine which category posts to display
- Posts without featured image using other post’s featured image
- Building a List of Posts grouped by custom taxonomy as the section header only to be displayed if at least one post is in that tax
- Send email on creation of custom post type and use get_post_meta()
- Is there a function that replace category name with a icon?
- Just the First Metabox what saves the data!