为了账号安全,请及时绑定邮箱和手机立即绑定

我的自定义帖子类型 URL 辅助信息块中缺少连字符

我的自定义帖子类型 URL 辅助信息块中缺少连字符

PHP
万千封印 2022-09-25 20:30:02
我使用以下代码在WordPress中创建了一个新的自定义帖子类型(收入成绩单)。我的自定义帖子类型的名称是“收入成绩单”,即2个单词。因此,鼻涕虫应该是“收入记录”。相反,URL是“收入转录本”。我在这里错过了什么?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,    );         // Registering your Custom Post Type    register_post_type( 'Earnings Transcripts', $args );        }
查看完整描述

3 回答

?
qq_花开花谢_0

TA贡献1835条经验 获得超7个赞

您必须更改


// 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未找到错误的问题


 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' );


查看完整回答
反对 回复 2022-09-25
?
青春有我

TA贡献1784条经验 获得超8个赞

"rewrite" => array( "slug" => "earnings-transcripts", "with_front" => true ),

在 中添加此参数,它将起作用。$args


查看完整回答
反对 回复 2022-09-25
?
慕少森

TA贡献2019条经验 获得超9个赞

有点晚了。我希望这个能对其他面临这种情况的人有所帮助。

当涉及到自定义帖子类型时,Slugs应该始终具有下划线而不是连字符,因为WordPress核心中有各种地方使用slug,如果不使用下划线,则会中断。

您可以查看此文章以获取有关此主题的更多详细信息:https://premium.wpmudev.org/forums/topic/why-is-underscore-permitted-in-the-post-type-but-dash-is-disallowed/#post-505820


查看完整回答
反对 回复 2022-09-25
  • 3 回答
  • 0 关注
  • 61 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信