single- {post-type} .php приводит к 404 для custom-post-type из-за конфликтующих слагов для встроенной категории WordPress и archive-news.php - PullRequest
0 голосов
/ 08 мая 2019

Я получаю 404 от созданного мной пользовательского пост-типа при посещении URL-адреса поста.

Правильная структура постоянной ссылки, но в результате получается 404:

Я изменил порцию пользовательского набора из встроенной категории WPчто я использую пустую настройку по умолчанию, которая приводит к успеху при просмотре сообщения single- {post-type} .php, но с тем недостатком, что моя довольно постоянная структура не такая, как я хочу.

Неверная структура постоянной ссылки, но сообщение доступно:

ПользовательскийТип записи: "новости" , который использует встроенный WP "Категория"

    /*----------------------------*/
    /*-- Custom post type: News --*/
    /*----------------------------*/
    function dm_cptNews() {

        $labels = array(
            'name'                  => _x( 'News items', 'Post Type General Name', 'foobar-2k19' ),
            'singular_name'         => _x( 'News Item', 'Post Type Singular Name', 'foobar-2k19' ),
            'menu_name'             => __( 'News items', 'foobar-2k19' ),
            'name_admin_bar'        => __( 'News Item', 'foobar-2k19' ),
            'archives'              => __( 'News items Archives', 'foobar-2k19' ),
            'attributes'            => __( 'News Item Attributes', 'foobar-2k19' ),
            'parent_item_colon'     => __( 'Parent News Item:', 'foobar-2k19' ),
            'all_items'             => __( 'All News Items', 'foobar-2k19' ),
            'add_new_item'          => __( 'Add New News Item', 'foobar-2k19' ),
            'add_new'               => __( 'Add New News Item', 'foobar-2k19' ),
            'new_item'              => __( 'New News Item', 'foobar-2k19' ),
            'edit_item'             => __( 'Edit News Item', 'foobar-2k19' ),
            'update_item'           => __( 'Update News Item', 'foobar-2k19' ),
            'view_item'             => __( 'View News Item', 'foobar-2k19' ),
            'view_items'            => __( 'View News Items', 'foobar-2k19' ),
            'search_items'          => __( 'Search News Item', 'foobar-2k19' ),
            'not_found'             => __( 'Not found', 'foobar-2k19' ),
            'not_found_in_trash'    => __( 'Not found in Trash', 'foobar-2k19' ),
            'featured_image'        => __( 'Featured Image', 'foobar-2k19' ),
            'set_featured_image'    => __( 'Set featured image', 'foobar-2k19' ),
            'remove_featured_image' => __( 'Remove featured image', 'foobar-2k19' ),
            'use_featured_image'    => __( 'Use as featured image', 'foobar-2k19' ),
            'insert_into_item'      => __( 'Insert into news item', 'foobar-2k19' ),
            'uploaded_to_this_item' => __( 'Uploaded to this news item', 'foobar-2k19' ),
            'items_list'            => __( 'News items list', 'foobar-2k19' ),
            'items_list_navigation' => __( 'News Items list navigation', 'foobar-2k19' ),
            'filter_items_list'     => __( 'Filter news items list', 'foobar-2k19' ),
        );
        $args = array(
            'label'                 => __( 'News Item', 'foobar-2k19' ),
            'description'           => __( 'News custom post type.', 'foobar-2k19' ),
            'labels'                => $labels,
            'supports'              => array( 'title', 'editor', 'revisions', 'post-formats', 'excerpt' ),
            'taxonomies'            => array( 'category' ),
            'hierarchical'          => false,
            'public'                => true,
            'show_ui'               => true,
            'show_in_menu'          => true,
            'menu_position'         => 27,
            'menu_icon'             => 'dashicons-megaphone',
            'show_in_admin_bar'     => true,
            'show_in_nav_menus'     => true,
            'can_export'            => true,
            'has_archive'           => false,
            'rewrite'               => array('slug' => 'news/%category%'),
            'exclude_from_search'   => false,
            'publicly_queryable'    => true,
            'capability_type'       => 'post',
        );
        register_post_type( 'news', $args );

    }
    add_action( 'init', 'dm_cptNews', 0 );

Заполнить% category% для prettypermalinks

    /*-------------------------------*/
    /*-- Custom slug News category --*/
    /*-------------------------------*/
    function dm_customSlugNewsCategory( $post_link, $id = 0 ){
        $post = get_post($id);  
        if ( is_object( $post ) ){
            $terms = wp_get_object_terms( $post->ID, 'category' );
            if( $terms ){
                return str_replace( '%category%' , $terms[0]->slug , $post_link );
            }
        }
        return $post_link;  
    }
    add_filter( 'post_type_link', 'dm_customSlugNewsCategory', 1, 3 );

Настройка постоянной ссылки

Скриншот постоянной ссылки

Я знаю, что WordPress "ненавидит" конфликтующие слагы, но с точки зрения SEO это должно быть выполнимо.Я также не хочу исправлять проблему с некоторыми сторонними плагинами.

Короче говоря: Встроенный слаг «Категория» WP должен быть заменен на «новости» и должен иметь возможностьотобразить single-news.php

(и да, я стирал постоянные ссылки после каждого редактирования.)

...