You can manually create pages named category
and app
in admin under the Pages
menu, and use a custom page template for each to list out taxonomy terms or whatever you need.
EDIT – 301 redirect a request that matches the pagename
rewrite to another page:
function wpa_parse_query( $query ){
if( isset( $query->query_vars['pagename'] )
&& 'apps' == $query->query_vars['pagename'] ){
wp_redirect( home_url( '/other-page/' ), 301 );
exit;
}
}
add_action( 'parse_query', 'wpa_parse_query' );
Related Posts:
- taxonomy/category term in URL slug irrelevant for post?
- Expired event redirect to parent category
- How to have article URL like example.com/article1 and example.com/foo/article2?
- How to show taxonomy on front page
- How to manage the links of a new taxonomy
- Custom Post Type Archive with Dynamic Taxonomy Filtering
- taxonomy term in URL slug won’t forward to the correct term for custom post like it does for default categories/normal posts
- Append taxonomy url
- Bulk 301 redirect for Taxonomies with pagination
- How to show a hierarchical terms list?
- The Difference Between Hierarchical and Non-Hierarchical Taxonomies?
- How to perform unit testing on proposed patches in Trac?
- Attaching taxonomy data to post with wp_insert_post
- Need a simple but complete example of adding metabox to taxonomy
- How to prevent automatic redirection of 404 errors and “incorrect” URLs?
- How to get taxonomy term of the current page and populate queries in the template
- Disable WordPress URL auto complete
- Redirect user to original url after login?
- Can the default “post tags” taxonomy be renamed?
- Custom columns for taxonomy list table
- Custom Taxonomy WP_Query for All Terms in a Taxonomy?
- Custom taxonomy list page?
- How to add a default item to a custom taxonomy?
- Disable ONLY URL auto complete, not the whole canonical URL system
- Remove the category/taxonomy description field?
- Add ‘Description’ to taxonomy ‘Quick Edit’
- Why does get_term() require taxonomy? Are term_ids not unique?
- How does Woocommerce store variation attributes, and how can they be retrieved per-variation? [closed]
- tax_query in get_posts() not working?
- Catch 404 after changing permalink structure from /%postname%/ to /%category%/%postname%/
- User redirect to destination URL after login
- What is wp_insert_term “alias_of” arg for?
- Automatically Assign Parent Terms When A Child Term is Selected
- Changing attachment urls?
- get term by id without taxonomy
- Creating 301 Redirects for Post, Page, Category and Image URLs?
- How to organize and cache additional data associated with terms?
- Using pre_get_posts to set posts per page, how do I?
- get a specific taxonomy term name
- wp_set_object_terms() Fails to Set Terms
- wp_set_object_terms() — prevent overwrite?
- Taxonomy terms sort by… Last name!
- Add forward slash on categories url (serve one version of a url)
- List Hierarchical Term List with Count with Related Term
- Redirecting WordPress /.htaccess / HSTS / SSL
- Is there a way to set singular/plural labels for taxonomy term names?
- WordPress – Creating multiple versions of the same single-customtype.php depending on selected taxonomy categories
- Better way to enforce category hierarchy in post_categories_metabox?
- get_terms() How many is TOO many?
- Exclude custom taxonomy from search results and archive pages
- Child Terms not Displaying on the Taxonomy Term Admin Screen
- Why does WordPress automatically redirect URLs with the parameter “name=” to a different page?
- get_terms with posts that have a different taxonomy with term x
- How to display child term of current term’s parent taxonomy?
- List all taxonomy terms / Show links if posts are attached, else names
- List taxonomy terms as links
- check if tag exists in wp database
- Sorting custom taxonomy causes menus error
- How to overwrite a specific parameter in a core taxonomy?
- Set a cookie in WordPress, using a select form and Jquery
- Will references to ugly links automatically redirect to their pretty url permalink?
- How to setup 301 redirects for multiple query string URLs?
- How to add terms to taxonomy with wp_insert_terms?
- How to update taxonomy custom field with wp_update_term()?
- How to create non-unique sub-category slugs?
- Get_term_by only returns one item from array
- How to set a Preset category for custom post types?
- Can we have same term slug in different taxonomies?
- WP Login forms action URLs displayed as pretty URLs in browser (ex with Restore Password)
- Is there any difference between post in child term and child & parent terms?
- Add additional data to a specific taxonomy term when used in a post
- Login to wp-admin “redirect_to” points to wrong URL after migration
- Set default (auto) slug prefix for Tags
- How to have “the most used tags” taxonomy always expanded?
- Add Thumbnail to wp_list_categories()
- Get parent and first child taxonomy terms?
- How to add automatically keyword to taxonomies when a post published, and assign them to the post
- Display the number of published posts for each custom taxonomy term?
- Display Custom Taxonomy in Sidebar in Two Columns
- Get wordpress taxonomy archive and sort by year
- Search for tags
- Stop unwanted WP redirection to new url
- Create and move terms for taxonomies
- Display Post by taxonomy and taxonomy child
- How does WordPress redirect to WooCommerce shop page? [closed]
- WP redirects all pages from new domain to old domain
- Display Post by taxonomy and taxonomy child if exist
- Fatal error: Call to undefined method stdClass::filter() in wp-includes\taxonomy.php on line 805
- WP native tag suggest metabox. How does it process tag id?
- Missing term_id and term_taxonomy_id when adding a term using wp_insert_term() function
- Update all posts at once
- Change order of WordPress tag cloud
- Search results URL without query string variables
- Retrieve taxonomy terms in order of their post’s date?
- How to get the last term from taxonomy?
- Server (WordPress) redirects files that are not supposed to (using htaccess)
- Count posts for each taxonomy term for each month
- Custom taxonomy archive – No posts found [closed]
- Display parent taxonomy name and list child taxonomies below it?
- List post from current taxonomy children