自定义帖子类型在WordPress中给出404错误

时间:2018-08-28 17:42:29

标签: wordpress

我创建了一个插件,可以为我正在构建的网站创建自定义帖子类型。当我单击永久链接时,出现404错误。我的代码如下所示。

//////// Create Rates Custom Post
function rate_groupings_custom_post() {
$labels = array(
    'name'               => _x( 'Rate Groups', 'post type general name' ),
    'singular_name'      => _x( 'Rate Group', 'post type singular name' ),
    'add_new'            => _x( 'Add New Group', 'Group' ),
    'add_new_item'       => __( 'Add New Group' ),
    'edit_item'          => __( 'Edit Group' ),
    'new_item'           => __( 'New Group' ),
    'all_items'          => __( 'All Groups' ),
    'view_item'          => __( 'View Group' ),
    'search_items'       => __( 'Search Groups' ),
    'not_found'          => __( 'No Groups found' ),
    'not_found_in_trash' => __( 'No Groups found in the Trash' ),
    'parent_item_colon'  => '',
    'menu_name'          => 'Rate Groups'
);
$args = array(
    'labels'        => $labels,
    'description'   => 'Menu area to add Group',
    'public'        => true,
    'publicly_queryable' => true,
    'menu_position' => 35,
    'menu_icon'     => 'dashicons-admin-multisite',
    'supports'      => array( 'title', 'thumbnail', 'page-attributes', 'editor' ),
    'has_archive'   => false,
    'show_in_rest' => false
);

register_post_type( 'rates', $args );
}
add_action( 'init', 'rate_groupings_custom_post' );

2 个答案:

答案 0 :(得分:0)

通常,当您在网站上遇到404错误时,这与您的代码无关,只是链接指向错误的位置或您的永久链接配置不正确。

尝试查看面板设置上的固定链接,并验证创建的路径是否正确。

如果您进一步怀疑wpbeginner可以帮助您:WPBeginner

祝你好运:)

答案 1 :(得分:0)

每当我构建自定义帖子类型时,我总是会刷新重写规则:

在左侧的侧边栏菜单中,依次转到“设置”>“永久链接”,然后单击“保存更改”。