I think the best way to do it is to create a custom template page and get the list of terms (or whatever you need) on that template.
template-activities-taxonomy.php
<?php
/* Template Name: Activities Taxonomy */
get_header(); ?>
<?
$terms = get_terms( 'activities' );
if ( ! empty( $terms ) && ! is_wp_error( $terms ) ): ?>
<ul>
<?php foreach ( $terms as $term ): ?>
<li><a href="https://wordpress.stackexchange.com/questions/273555/<?php echo esc_url( get_term_link( $term ) ); ?>"><?php echo $term->name; ?></a></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<?php get_footer(); ?>
And then just create a Page with the url you want (/activities) that uses that template.
Related Posts:
- Filter blog archive by category in URL
- Pagination on taxonomy archive pages breaks
- Adding tag’s featured image to tag archive
- Custom Taxonomy index/archive hierarchy
- get_the_term_list – Return links to edit.php instead of link to taxonomy archive template
- Echo taxonomy name – second level
- Taxonomy term archive default loop returns 1 record instead of 8
- Calling an Archive Page with specific Tag/Tax ID
- Taxonomy.php inheriting first post
- All tag/category/custom taxonomy archives 404
- Same page for startpage and archive?
- How to share terms between two taxonomies?
- Taxonomy terms can’t find posts from archive.php or taxonomy.php
- Rewrite permalink to include multiple taxonomies
- Apply custom taxonomy archive template to children
- IF taxonomy archive is hierarchical THEN
- How to get taxonomy term of the current page and populate queries in the template
- Custom taxonomy list page?
- What is wp_insert_term “alias_of” arg for?
- wp_set_object_terms() — prevent overwrite?
- List Hierarchical Term List with Count with Related Term
- Is there a way to set singular/plural labels for taxonomy term names?
- List taxonomy terms as links
- Get_term_by only returns one item from array
- Can we have same term slug in different taxonomies?
- How to have “the most used tags” taxonomy always expanded?
- Get parent and first child taxonomy terms?
- Get wordpress taxonomy archive and sort by year
- Search for tags
- What hooks/filters are there to alter selected terms on post save?
- tax_query: What to pass when I want to have all terms?
- Custom Roll/Custom Post Type – Can’t Select Categories
- Trying to list terms of a custom taxonomy using get_categories
- Add a term to an attachment submitted from front end
- Get and loop posts with all taxonomy terms
- Unable to delete a Category and Tag that share same slug
- CPT: archive-cpt.php VS custom page template
- Category page only displaying the posts from a custom type
- I need template for my custom taxonomy term
- Show list of custom taxonomies when another taxonomy is selected
- WordPress as thesaurus/dictionnary: what approach?
- Custom taxonomy is crashing Gutenberg
- How to show the category filter that’s shown on the ‘All post’ pages on a custom post type page in the admin area?
- Custom WP Query: force entry for some taxonomy and have others optional
- Using get_posts() with tax_query parameter set isn’t working with attachments
- How to get the top level parent term Advanced Custom Field values in the child terms
- Modify the query method when adding category filtering function to the custom post list
- Allow a Taxonomy Term to be Used Only Once Across All Posts
- How do I check if the user is on a taxonomy term parent, child or grandchild page?
- Count Published & Draft Posts Associated With Each Term
- Custom Taxonomy Term Archive Page Template that Filters 2 or more Taxonomies
- How to sync to custom taxonomies (tag structure)
- List posts in a category grouped by other categories?
- is_taxonomy() is not working
- Add text to the end of each list item in wp_list_categories
- get_term_by seems to be failing
- How to return newly added terms when using wp_set_object_terms
- How to update a taxonomy term for a custom post type with auto incrementing number
- Filtering elements by taxonomy slug
- Custom Post Type + Custom Taxonomy = Archive Listing Page Problems
- Get terms in hierarchical taxonomy
- Taxonomy Checkbox Admin Panel
- Replacing a placeholder term with a session variable value in taxonomy filter
- Loop problem – Taxonomy
- Select query with two and two related taxonomies
- How to relate to 2 taxonomy with category
- WP Search using taxonomy terms
- Customize menu link for taxonomy in WP menu
- Is possible hide hierarchical select dropdown created by jetsmartfilters? (only visual issue)
- How do I converge taxonomy category permalinks into one?
- Add terms to a taxonomy archive from within the same taxonomy
- Taxonomy terms are not checked when edit custom post
- Url leading to archive page, no matter what
- Checking if a product ID has taxonomy term attached not working with has_term
- Can I create a tax query to return posts that match two slugs from same taxonomy
- Show the parent taxonomy by creating shortcode in woocommerce?
- Display related terms from a taxonomy in an entry
- I want to get term by term_name without taxonomy
- Add specific content to a taxonomy results page
- Set the limit of taxonomy per page
- What is this Query? and why its taking too much time? Any way to optimize it?
- taxonomy terms, inverted
- How to create a completely functioning separate archive for posts from only 1 or 2 specific categories
- Taxonomy Rewrite Problem
- Filtering posts by taxonomy and meta_value
- WordPress Archives Cause Looping
- How to get a query odered by N of matching taxonomies?
- GET Taxonomy ID
- Hiding an Advanced Custom Field based on Taxonomy Field selection
- Non-Recursive get_term_children()
- How can I set up the URL for a category archive for a custom post type?
- How do I add tags/taxonomy to images + a query field on page to query ‘albums’ (images with same tag/taxonomy)
- Delete Term via edit-tags.php
- multiple taxonomies in wp_list_categories’ $args
- Description of a sub-taxonomy
- Order taxonomy terms by the frequency of use in the last 30 days
- I need to add new menu item inside the custom post admin menu
- Taxonomies starting with a hyphen (minus) to assign B.C. dates to a post
- Hiding a tag from display
- taxonomy change to post/page type