Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8619341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T06:18:57+00:00 2026-06-12T06:18:57+00:00

Is it possible in wordpress when I call example.com/category to have listed all available

  • 0

Is it possible in wordpress when I call example.com/category to have listed all available categories. If I request the url like in my example I’m getting an 404 page

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T06:18:58+00:00Added an answer on June 12, 2026 at 6:18 am

    I’m not sure if there is a default link to list all the categories.

    But it doesn’t mean you can’t do it yourself. Create a new template file in your theme, name it for example category_list.php and add this code:

    You might want to tweak it a bit to display it how you want.

    <?php
    /**
     * Template Name: Category listing
     * Description: list all the categories
     */
    
    get_header(); ?>
    
        <div class="container">
            <?php
            $args=array(
                'orderby' => 'name',
                'order' => 'ASC'
            );
            $categories=get_categories($args);
            foreach($categories as $category):
                echo '<p>Category: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> ';
                echo '<p> Description:'. $category->description . '</p>';
                echo '<p> Post Count: '. $category->count . '</p>';  
                echo '<hr />'; 
            endforeach;
            ?>
        </div>
    
    <?php get_footer(); ?>
    

    Then go to Pages -> add new. Name the Page as “Category”, so that the url will be example.com/category.

    And in the template list select the template you just created. It will be named “Category listing” as you can see in the code above in the comments at the top.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to have two URL for a same post in wordpress.com? One
Is it possible to show subcategories of categories in Wordpress? Let's say I have
Is it possible to have a page like: www.site.com/page/ and show different templated versions
is it possible in Wordpress to have the category description use a rich text
In Wordpress it's possible to create own WP Querys for the loop. An example
Quick Wordpress question. Is it possible to check against a specific category, so not
I've purchased a new domain (let's call this domain1.com) and I'd like to use
Is it possible to have Wordpress generate this type of unordered list? <ul id=nav1>
Is it possible to ask Wordpress to look in all 'uploads' folder and not
Possible Duplicate: Wordpress - Get Current Category Parents I'm learning wordpress. How can I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.