Comments 1ugedafita started the conversationNovember 28, 2025 at 8:42amHello,How can I change the portfolio slugs? There are no options on Wordpress permalinks settings. Thanks.Regards 1,000Neuron repliedNovember 28, 2025 at 1:35pmHi, You can change the portfolio slug by adding the following code to the functions.php file of the Kanik/Kanikchild theme. function change_portfolio_post_type_slug() { if ( post_type_exists( 'portfolio' ) ) { $post_type = get_post_type_object( 'portfolio' ); $post_type->rewrite['slug'] = 'project'; $post_type->rewrite['with_front'] = false; register_post_type( 'portfolio', (array) $post_type ); } } add_action( 'init', 'change_portfolio_post_type_slug', 20 ); Feel free to ask for anything you need. Kind Regards 1ugedafita repliedDecember 1, 2025 at 8:42amHello,I've implemented the code but it's not working. Look here: https://sad-goldstine.185-186-169-203.plesk.page/project/your-brand-louder/Thanks! 1,000Neuron repliedDecember 2, 2025 at 12:59pmHi, Can you please provide me with your wp-admin, I will have a quick look to see what's going on. Feel free to ask for anything you need. Kind Regards Sign in to reply ...
Hello,
How can I change the portfolio slugs? There are no options on Wordpress permalinks settings. Thanks.
Regards
Hi,
You can change the portfolio slug by adding the following code to the functions.php file of the Kanik/Kanikchild theme.
function change_portfolio_post_type_slug() { if ( post_type_exists( 'portfolio' ) ) { $post_type = get_post_type_object( 'portfolio' ); $post_type->rewrite['slug'] = 'project'; $post_type->rewrite['with_front'] = false; register_post_type( 'portfolio', (array) $post_type ); } } add_action( 'init', 'change_portfolio_post_type_slug', 20 );Feel free to ask for anything you need.
Kind Regards
Hello,
I've implemented the code but it's not working. Look here: https://sad-goldstine.185-186-169-203.plesk.page/project/your-brand-louder/
Thanks!
Hi,
Can you please provide me with your wp-admin, I will have a quick look to see what's going on.
Feel free to ask for anything you need.
Kind Regards