How to rewrite URL of Custom Taxonomy in WordPress?

There are custom posts and taxonomy in my theme (WordPress). I want to change url of them. At the moment I have sth like this:

www.mypage.pl/catalog/

I need rewrite url like this:

Read More
www.mypage.pl/parent/catalog/

I put the code:

'rewrite'         => array(
    'slug'          => 'parent/catalog',
    'with_front'=> false,
    'feed'=> true,
    'pages'=> true
            ),

This works for page www.mypage.pl/parent/catalog/myproduct, but www.mypage.pl/parent/catalog/ isn’t.

Related posts

Leave a Reply

1 comment