How to change the permalink from “advert” to something else
-
Hi, i need to change the permalink for you custom post type
from “site.com/advert/xxx”
to “site.com/my_custom_permalink/xxx”i already tried by adding this to the functions.php:
add_action("adverts_post_type", "customize_adverts_post_type"); function customize_adverts_post_type( $args ) { if(!isset($args["rewrite"])) { $args["rewrite"] = array(); } $args["rewrite"]["slug"] = "my_custom_permalink"; return $args; }
the permalink changes but when i try to load a page it automatically redirects to the homepage so i cannot load the “single” product page anymore. I also refreshed the permalinks from the WP page but no luck..
what i have to do?
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘How to change the permalink from “advert” to something else’ is closed to new replies.