Comments Nicolas started the conversation6 days ago on Friday at 1:47pmHello,How can I change my portfolio slug from /portfolio/nom-du-projet to /projet/nom-du-projet ?Thanks for your help. 933Neuron replied2 days ago on Tuesday at 9:11amHi Nicolas, I am very sorry for the late reply, we were not working on the weekend. You can change the portfolio slug by adding the following code at the functions.php file of the Ponte/Ponte child 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', $post_type); } } add_action('init', 'change_portfolio_post_type_slug', 20); Feel free to ask for anything you need. Kind RegardsNicolas replied2 days ago on Tuesday at 10:49amThanks ! 933Neuron replied2 days ago on Tuesday at 9:24pmYou are welcome anytime, feel free to ask for anything you need If you like our theme or the support, please leave us a rate of 5 stars at ThemeForest, that would help us a lot. Kind Regards, NeuronThemes Sign in to reply ...
Hello,
How can I change my portfolio slug from /portfolio/nom-du-projet to /projet/nom-du-projet ?
Thanks for your help.
Hi Nicolas,
I am very sorry for the late reply, we were not working on the weekend.
You can change the portfolio slug by adding the following code at the functions.php file of the Ponte/Ponte child theme.
Feel free to ask for anything you need.
Kind Regards
Thanks !
You are welcome anytime, feel free to ask for anything you need
If you like our theme or the support, please leave us a rate of 5 stars at ThemeForest, that would help us a lot.
Kind Regards,
NeuronThemes