Denys Dmytruk
не совсем понимаю
function custom_rewrite_rules() { // порядок имеет значение // для ссылок типа: product_brand/brand_name/page add_rewrite_rule( '^product_brand/([^/]+)/page/([0-9]{1,})/?', 'index.php?product_brand=$matches[1]&page=$matches[2]', 'top' ); // для ссылок типа: product_brand/brand_name/category_name/page add_rewrite_rule( '^product_brand/([^/]+)/([^/]+)/page/([0-9]{1,})/?', 'index.php?product_brand=$matches[1]&product_cat=$matches[2]&page=$matches[3]', 'top' ); // для ссылок типа: product_brand/brand_name/category_name add_rewrite_rule('^product_brand/([^/]+)/([^/]+)?', 'index.php?product_brand=$matches[1]&product_cat=$matches[2]', 'top'); add_filter( 'query_vars', function( $vars ){ $vars[] = 'product_brand'; $vars[] = 'product_cat'; return $vars; } ); } add_action('init', 'custom_rewrite_rules');