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

  • Home
  • SEARCH
  • 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 8892819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:06:09+00:00 2026-06-14T23:06:09+00:00

I have tried refreshing my permalinks but I still cant get this to work

  • 0

I have tried refreshing my permalinks but I still cant get this to work correctly.

I have the categories movies, gaming, blu-ray, and tv already created, so my URLs are site.com/movies/ for example. I would like for a post for movies to be at site.com/movies/post-here/ so for my custom post type my slug is `movies.

All my normal wordpress psots under the category movies are now 404ing while posts created specifically from the post type Movie Posts is working fine. Is this normal? Is there a step I’m not including?

Here are all my custom post types (Created with Custom Post Type UI):

//Movies Custom Post Type
register_post_type('movies_cp', array(  'label' => 'Movie Posts','description' => '','public' => true,'show_ui' => true,'show_in_menu' => true,'capability_type' => 'post','hierarchical' => false,'rewrite' => array('slug' => 'movies'),'query_var' => true,'exclude_from_search' => false,'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes',),'taxonomies' => array('category','post_tag',),'labels' => array (
  'name' => 'Movie Posts',
  'singular_name' => 'Movie Post',
  'menu_name' => 'Movie Posts',
  'add_new' => 'Add Movie Post',
  'add_new_item' => 'Add New Movie Post',
  'edit' => 'Edit',
  'edit_item' => 'Edit Movie Post',
  'new_item' => 'New Movie Post',
  'view' => 'View Movie Post',
  'view_item' => 'View Movie Post',
  'search_items' => 'Search Movie Posts',
  'not_found' => 'No Movie Posts Found',
  'not_found_in_trash' => 'No Movie Posts Found in Trash',
  'parent' => 'Parent Movie Post',
),) );


//Gaming Custom Post Type
register_post_type('gaming_cp', array(  'label' => 'Gaming Posts','description' => '','public' => true,'show_ui' => true,'show_in_menu' => true,'capability_type' => 'post','hierarchical' => false,'rewrite' => array('slug' => 'gaming'),'query_var' => true,'exclude_from_search' => false,'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes',),'taxonomies' => array('category','post_tag',),'labels' => array (
  'name' => 'Gaming Posts',
  'singular_name' => 'Gaming Post',
  'menu_name' => 'Gaming Posts',
  'add_new' => 'Add Gaming Post',
  'add_new_item' => 'Add New Gaming Post',
  'edit' => 'Edit',
  'edit_item' => 'Edit Gaming Post',
  'new_item' => 'New Gaming Post',
  'view' => 'View Gaming Post',
  'view_item' => 'View Gaming Post',
  'search_items' => 'Search Gaming Posts',
  'not_found' => 'No Gaming Posts Found',
  'not_found_in_trash' => 'No Gaming Posts Found in Trash',
  'parent' => 'Parent Gaming Post',
),) );


//Blu-ray Custom Post Type
register_post_type('blu-ray_cp', array( 'label' => 'Blu-Ray Posts','description' => '','public' => true,'show_ui' => true,'show_in_menu' => true,'capability_type' => 'post','hierarchical' => false,'rewrite' => array('slug' => 'blu-ray'),'query_var' => true,'exclude_from_search' => false,'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes',),'taxonomies' => array('category','post_tag',),'labels' => array (
  'name' => 'Blu-Ray Posts',
  'singular_name' => 'Blu-Ray Post',
  'menu_name' => 'Blu-Ray Posts',
  'add_new' => 'Add Blu-Ray Post',
  'add_new_item' => 'Add New Blu-Ray Post',
  'edit' => 'Edit',
  'edit_item' => 'Edit Blu-Ray Post',
  'new_item' => 'New Blu-Ray Post',
  'view' => 'View Blu-Ray Post',
  'view_item' => 'View Blu-Ray Post',
  'search_items' => 'Search Blu-Ray Posts',
  'not_found' => 'No Blu-Ray Posts Found',
  'not_found_in_trash' => 'No Blu-Ray Posts Found in Trash',
  'parent' => 'Parent Blu-Ray Post',
),) );


//TV Custom Post Type
register_post_type('tv_cp', array(  'label' => 'TV Posts','description' => '','public' => true,'show_ui' => true,'show_in_menu' => true,'capability_type' => 'post','hierarchical' => false,'rewrite' => array('slug' => 'tv'),'query_var' => true,'exclude_from_search' => false,'supports' => array('title','editor','excerpt','trackbacks','custom-fields','comments','revisions','thumbnail','author','page-attributes',),'taxonomies' => array('category','post_tag',),'labels' => array (
  'name' => 'TV Posts',
  'singular_name' => 'TV Post',
  'menu_name' => 'TV Posts',
  'add_new' => 'Add TV Post',
  'add_new_item' => 'Add New TV Post',
  'edit' => 'Edit',
  'edit_item' => 'Edit TV Post',
  'new_item' => 'New TV Post',
  'view' => 'View TV Post',
  'view_item' => 'View TV Post',
  'search_items' => 'Search TV Posts',
  'not_found' => 'No TV Posts Found',
  'not_found_in_trash' => 'No TV Posts Found in Trash',
  'parent' => 'Parent TV Post',
),) );
  • 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-14T23:06:10+00:00Added an answer on June 14, 2026 at 11:06 pm

    Do you have a page that has the permalink /movies/ too? Because the duplicate of the permalink may be the cause of your 404 error.

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

Sidebar

Related Questions

I have tried searching over the internet about this problem but not able to
I have tried many permutations but they all don't seems to work well. Am
Have tried to find solutions for this and can't really come up with anything.
I have tried this: #define format(f, ...) \ int size = strlen(f) + (sizeof((int[]){__VA_ARGS__})/sizeof(int))
Very frustrating one... I have tried many combinations of ', and so on but
I have used this script, but it is not serving me well anymore. I
I've tried Infragistics on this but they don't seem to understand what I am
I have searched the net for a solution but can't seem to get anywhere.
I have tried to go through the jungle (really, PayPal, why don't you weed
I have tried a variety of different solutions found on stack and other places

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.