我的自定义帖子类型 URL Slug 中缺少连字符/破折号(-)

Posted

技术标签:

【中文标题】我的自定义帖子类型 URL Slug 中缺少连字符/破折号(-)【英文标题】:Hyphen/dash(-) missing in my Custom Post Type URL Slug 【发布时间】:2020-06-01 00:51:15 【问题描述】:

我使用以下代码在 WordPress 中创建了一个新的自定义帖子类型(收入成绩单)。我的自定义帖子类型的名称是 "Earnings Transcripts",即 2 个单词。所以slug应该是“earnings-transcripts”。相反,该 URL 是 “earningstranscripts”。如果我错了或者我在这里遗漏了什么,请纠正我。

function custom_post_type() 

    // Earnings Transcripts 
    $labels = array(
        'name'                => _x( 'Earnings Transcripts', 'Post Type General Name', 'twentysixteen' ),
        'singular_name'       => _x( 'Earnings Transcripts', 'Post Type Singular Name', 'twentysixteen' ),
        'menu_name'           => __( 'Earnings Transcripts', 'twentysixteen' ),
        'parent_item_colon'   => __( 'Parent Earnings Transcripts', 'twentysixteen' ),
        'all_items'           => __( 'All Earnings Transcripts', 'twentysixteen' ),
        'view_item'           => __( 'View Earnings Transcripts', 'twentysixteen' ),
        'add_new_item'        => __( 'Add New Earnings Transcripts', 'twentysixteen' ),
        'add_new'             => __( 'Add New', 'twentysixteen' ),
        'edit_item'           => __( 'Edit Earnings Transcripts', 'twentysixteen' ),
        'update_item'         => __( 'Update Earnings Transcripts', 'twentysixteen' ),
        'search_items'        => __( 'Search Earnings Transcripts', 'twentysixteen' ),
        'not_found'           => __( 'Not Found', 'twentysixteen' ),
        'not_found_in_trash'  => __( 'Not found in Trash', 'twentysixteen' ),
    );
    $args = array(
        'label'               => __( 'Earnings Transcripts', 'twentysixteen' ),
        'description'         => __( 'Earnings Transcripts', 'twentysixteen' ),
        'labels'              => $labels,
        'supports'            => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'revisions', 'custom-fields', ),
        'taxonomies'          => array( 'Earnings Transcripts' ),
        'hierarchical'        => false,
        'public'              => true,
        'show_ui'             => true,
        'show_in_menu'        => true,
        'show_in_nav_menus'   => true,
        'show_in_admin_bar'   => true,
        'menu_position'       => 5,
        'can_export'          => true,
        'has_archive'         => true,
        'exclude_from_search' => false,
        'publicly_queryable'  => true,
        'capability_type'     => 'page',
    );     
    // Registering your Custom Post Type
    register_post_type( 'Earnings Transcripts', $args );    


add_action( 'init', 'custom_post_type', 0 );    

此外,在查看此自定义帖子类型下的详细帖子时,我不希望此 slug 出现在帖子 URL 之前的 URL 中。

例如,此自定义帖子类型下的详细帖子的 URL 应如下所示,不包含自定义帖子类型 slug。

www.domainname.com/post-url/

【问题讨论】:

【参考方案1】:

你必须改变

// Registering your Custom Post Type
register_post_type( 'Earnings Transcripts', $args );

这样的变化:

register_post_type('earnings-transcripts', $args);

以下函数将从永久链接中删除 slug

 function rf_remove_slug( $post_link, $post, $leavename ) 
  if ( 'earnings-transcripts' != $post->post_type || 'publish' != $post->post_status ) 
    return $post_link;
  
  $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
  return $post_link;

add_filter( 'post_type_link', 'rf_remove_slug', 10, 3 );

以下功能将解决此自定义帖子类型下详细帖子页面显示404 Not found错误的问题

 function rf_parse_request( $query ) 
  if ( ! $query->is_main_query() || 2 != count( $query->query ) || ! isset( $query->query['page'] ) ) 
    return;
  
  if ( ! empty( $query->query['name'] ) ) 
    $query->set( 'post_type', array( 'post', 'earnings-transcripts', 'page' ) );
  

add_action( 'pre_get_posts', 'rf_parse_request' );

【讨论】:

感谢您的代码运行良好。在自定义帖子类型的登陆页面上,它工作正常,但我想在查看该自定义帖子类型下的详细帖子时删除“收益-成绩单”标签。 检查这个 WP 插件和代码:kellenmace.com/remove-custom-post-type-slug-from-permalinks Slug 已删除,但在详细帖子中显示未找到页面。 我已经更新了我的答案。请在我在上面的答案中提到的functions.php文件中添加上述2个函数。【参考方案2】:
"rewrite" => array( "slug" => "earnings-transcripts", "with_front" => true ),

$args中加入这个参数,就可以了。

【讨论】:

感谢您的代码运行良好。在自定义帖子类型的登陆页面上,它工作正常,但我想在查看该自定义帖子类型下的详细帖子时删除“收益-成绩单”标签。 看看这个:wordpress.stackexchange.com/a/204210/110795 我尝试了答案,但它不起作用。你能具体说明我应该寻找哪个答案吗? 你只需点击链接,它会自动滚动并带你回答,我说的是。

以上是关于我的自定义帖子类型 URL Slug 中缺少连字符/破折号(-)的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress // 删除 URL 的帖子类型 slug

自定义帖子类型 Slug 冲突

将分数添加到 wordpress 自定义帖子类型 slug

根据 Wordpress 中的自定义字段值批量重写帖子 slug

使用 htaccess 屏蔽/更改 url - wordpress slug

WordPress:在自定义帖子类型中获取模块名称的帖子 slug