add_action('init', function(){
global $wp_rewrite;
$permastruct = '%collections-brands%/collections'; // наша структура ЧПУ
// добавляем структуру ЧПУ
$wp_rewrite->add_permastruct( 'collections-brands', $permastruct, array(
'with_front' => true,
'paged' => true,
'feed' => false,
'forcomments' => false,
'walk_dirs' => false,
'endpoints' => false,
) );
}, 1);