404 для страниц после смены rewrite для cpt
-
Здравствуйте. Для кастомного типа jobs нужно было сделать slug по типу и категории.
Кастомный тип объявлен так:$labels_cpt_jobs = array( 'name' => _x( 'Jobs', 'Post Type General Name', 'WP' ), 'singular_name' => _x( 'Job', 'Post Type Singular Name', 'WPe' ), 'menu_name' => __( 'Jobs', 'WP' ), 'name_admin_bar' => __( 'Jobs', 'WP' ), 'archives' => __( 'Page Archives', 'WP' ), 'attributes' => __( 'Page Attributes', 'WP' ), 'parent_item_colon' => __( 'Parent Page:', 'WP' ), 'all_items' => __( 'All Jobs', 'WP' ), 'add_new_item' => __( 'Add New Page', 'WP' ), 'add_new' => __( 'Add New', 'WP' ), 'new_item' => __( 'New Page', 'WP' ), 'edit_item' => __( 'Edit Page', 'WP' ), 'update_item' => __( 'Update Page', 'WP' ), 'view_item' => __( 'View Page', 'WP' ), 'view_items' => __( 'View Pages', 'WP' ), 'search_items' => __( 'Search Page', 'WP' ), 'not_found' => __( 'Not found', 'WP' ), 'not_found_in_trash' => __( 'Not found in Trash', 'WP' ), 'featured_image' => __( 'Featured Image', 'WP' ), 'set_featured_image' => __( 'Set featured image', 'WP' ), 'remove_featured_image' => __( 'Remove featured image', 'WP' ), 'use_featured_image' => __( 'Use as featured image', 'WP' ), 'insert_into_item' => __( 'Insert into item', 'WP' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'WP' ), 'items_list' => __( 'Items list', 'WP' ), 'items_list_navigation' => __( 'Items list navigation', 'WP' ), 'filter_items_list' => __( 'Filter items list', 'WP' ), ); $args_cpt_jobs = array( 'labels' => $labels_cpt_jobs, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_icon' => 'dashicons-hammer', // Menu icon -> https://developer.wordpress.org/resource/dashicons/ 'query_var' => true, 'rewrite' => array( 'slug' => '%job_type%/jobs/%job_sectors%'), 'capability_type' => 'page', 'has_archive' => false, 'hierarchical' => true, 'menu_position' => null, 'supports' => array( 'title', 'editor', 'page-attributes', 'thumbnail', 'excerpt' ), 'show_in_rest' => true // Gutenberg & REST API activation ); register_post_type( 'jobs', $args_cpt_jobs );
Затем использовал фильтр post_type_link
add_filter('post_type_link', 'jobs_change_slug', 99, 2); function jobs_change_slug($post_link, $post) { if ('jobs' === $post->post_type) { $type_data = wp_get_post_terms($post->ID, 'job_type'); $job_type = reset($type_data)->slug; $sector_data = wp_get_post_terms($post->ID, 'job_sectors'); $job_sector = reset($sector_data)->slug; $post_link = str_replace('%job_type%', $job_type, $post_link); $post_link = str_replace('%job_sectors%', $job_sector, $post_link); } return $post_link; }
Джоба открывается по урлу как надо, но вот остальные страницы (Pages) и посты (Posts) стали отдавать 404. Обновлял и страницы и Settings -> Permalinks.
А вот допустим страница с таксономиями открывается корректно.
Если я делаю такой rewrite
'rewrite' => array( 'slug' => 'jobs' ),
то страницы отображаются корректно, но в таком случае урл для джобы не такой как надо.
Подскажите пожалуйста в чем может быть проблема?
- Тема «404 для страниц после смены rewrite для cpt» закрыта для новых ответов.