gpt4 book ai didi

wordpress - 当我添加自定义帖子类型永久链接重写时,我的常规帖子永久链接停止工作。无法让两者同时工作

转载 作者:行者123 更新时间:2023-12-02 23:20:04 25 4
gpt4 key购买 nike

真的很苦恼这个问题,所以任何帮助将不胜感激。我的网站既有常规帖子,也有称为“文章”的自定义帖子类型。

我正在尝试让它工作,以便我的常规帖子将使用/%category%/postname%/永久链接结构(我已在设置中设置)。这工作正常,直到我为我的文章帖子类型添加自定义重写。我希望文章遵循/%issue%/%postname%/结构。我可以通过以下方式让它工作得很好:

add_filter( 'post_type_link', 'wpa_show_permalinks', 1, 2 );

function wpa_show_permalinks( $post_link, $id = 0 ){
$post = get_post($id);
if ( is_object( $post ) && $post->post_type == 'article' ){
$terms = wp_get_object_terms( $post->ID, 'issue_tax' );
if( $terms ){
return str_replace( '%issue%' , $terms[0]->slug , $post_link );
}
}
return $post_link;
}

我的帖子类型注册如下:

function article_post_type() {

$labels = array(
'name' => _x( 'Magazine Articles', 'Post Type General Name', 'text_domain' ),
'singular_name' => _x( 'Magazine Article', 'Post Type Singular Name', 'text_domain' ),
'menu_name' => __( 'Magazine Articles', 'text_domain' ),
'name_admin_bar' => __( 'Magazine Articles', 'text_domain' ),
'parent_item_colon' => __( 'Parent Article:', 'text_domain' ),
'all_items' => __( 'All Articles', 'text_domain' ),
'add_new_item' => __( 'Add New Article', 'text_domain' ),
'add_new' => __( 'Add New', 'text_domain' ),
'new_item' => __( 'New Article', 'text_domain' ),
'edit_item' => __( 'Edit Article', 'text_domain' ),
'update_item' => __( 'Update Article', 'text_domain' ),
'view_item' => __( 'View Article', 'text_domain' ),
'search_items' => __( 'Search Article', 'text_domain' ),
'not_found' => __( 'Not found', 'text_domain' ),
'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ),
);
$rewrite = array(
'slug' => '%issue%',
'with_front' => false,
'pages' => true,
'feeds' => true,
);
$args = array(
'label' => __( 'article', 'text_domain' ),
'description' => __( 'Magazine Articles and Features', 'text_domain' ),
'labels' => $labels,
'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'trackbacks', 'revisions', 'custom-fields', 'page-attributes', ),
'taxonomies' => array( 'issue_tax', 'category', 'featured_media', 'tag' ),
'hierarchical' => false,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-welcome-write-blog',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'rewrite' => $rewrite,
'capability_type' => 'page',
);
register_post_type( 'article', $args );

}


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

我补充说,重置永久链接设置,文章永久链接开始按预期工作 - 但是 - 一旦我开始工作,我的常规帖子就开始显示 404。

为什么我无法让两者同时工作?我是不是在某个地方漏掉了一部分?

感谢您的建议!

-艾琳

<小时/>

只是我的问题的后续 - 也许我真正困扰的是为什么 post_type_filter 函数影响的不仅仅是我指定的文章帖子类型?

谢谢,艾琳

<小时/>

好吧,还有一件 super 奇怪的事情。如果我在自定义帖子链接末尾传递查询参数,这一切都有效,因此这有效: http://www.mysitename.com/spring-2015/test-article-here/?post_type=article但这给了我 404 http://www.mysitename.com/spring-2015/test-article-here/

为什么会这样?我很抱歉问了这么多问题,只是想弄清楚这个问题的真相..!

再次感谢,艾琳

最佳答案

'slug' => '%issue%', 替换为 'slug' => 'article/%issue%',

绝对有效,我已经测试过了。请注意,“文章”是帖子类型名称。

进行上述更改后还要保存永久链接。

关于wordpress - 当我添加自定义帖子类型永久链接重写时,我的常规帖子永久链接停止工作。无法让两者同时工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29378784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com