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 3277296
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:21:09+00:00 2026-05-17T19:21:09+00:00

I am building a new WordPress theme using register_post_type to create a custom post

  • 0

I am building a new WordPress theme using register_post_type to create a custom post type called Listings.

I would like each listing to have the following permalink structure:

http://www.mysite.com/post-author/listing-title

I’m not quite sure how to achieve this with the CPT controls listed in the Codex. Any help or links would be greatly appreciated!

  • 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-05-17T19:21:10+00:00Added an answer on May 17, 2026 at 7:21 pm

    Actually, you’ll need to define your own custom URL rewrite rule to achieve this … it’s not a built-in feature of custom posts. There’s a good example in the Codex that will get you started.

    Here’s a quick untested first-thought of how you could do this:

    add_filter('rewrite_rules_array','wp_insertMyRewriteRules');
    add_filter('query_vars','wp_insertMyRewriteQueryVars');
    add_filter('init','flushRules');
    
    // Remember to flush_rules() when adding rules
    function flushRules(){
        global $wp_rewrite;
        $wp_rewrite->flush_rules();
    }
    
    // Adding a new rule
    function wp_insertMyRewriteRules($rules)
    {
        $newrules = array();
        $newrules['([^/]+)/([^/]+)$'] = 'index.php?author=$matches[1]&listing-title=$matches[2]';
        return $newrules + $rules;
    }
    
    // Adding the id var so that WP recognizes it
    function wp_insertMyRewriteQueryVars($vars)
    {
        array_push($vars, 'listing-title');
        return $vars;
    }
    

    This should direct any links from http://www.mysite.com/me/my-listing to http://www.mysite.com/index.php?author=me&listing-title=my-listing. Handling the query after WordPress gets ahold of it is entirely up to you.

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

Sidebar

Related Questions

im building a new side with movable type. And i want to remove the
I'm building what could be called the DAL for a new app. Unfortunately, network
I am building my first wordpress theme and was hoping that when the user
I'm building a platform that produces websites. Think wordpress.com as a similar example. Each
When building a new iPhone app in Xcode, I'm getting this error: codesign error:
I'm building a new site for my company, and I'm at the stage where
We are building a new application in .net 3.5 with SQL server database. The
I am getting ready to start building a new web project in my spare
I'm building a PC with the new Intel I7 quad core processor. With hyperthreading
I've had a new found interest in building a small, efficient web server in

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.