如何从wordpress中的自定义帖子类型网址中删除博客?

时间:2018-04-18 11:24:03

标签: php wordpress

使用工具集插件创建自定义帖子类型URL。 我们发布了名为faq的帖子。 例如:链接应该是www.example.com/faq,但我身边的链接是www.example.com/blog/faq 我尝试使用function.php

中的重写条件来修复它
'rewrite'=>array('with_front'=> false,'slug'=>'blog');

3 个答案:

答案 0 :(得分:0)

尝试使用此方法删除网址中的博客

<?php 
function custom_post_request( $query ) {
    if ( ! $query->is_main_query() )
        return;
    if ( 2 != count( $query->query ) || ! isset( $query->query['page'] ) ) {
        return;
    }

    if ( ! empty( $query->query['name'] ) ) {
        $query->set( 'post_type', array( 'blog') );
    }
}
add_action( 'pre_get_posts', 'custom_post_request' );
function remove_custom_slug( $post_link, $post, $leavename ) {

    if ( 'blog' != $post->post_type  || 'blog' != $post->post_status ) {
        return $post_link;
    }

    $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );

    return $post_link;
}
add_filter( 'post_type_link', 'remove_custom_slug', 10, 3 );

?>

答案 1 :(得分:0)

您只需删除博客并将&#39; /&#39;在自定义帖子类型的常见问题解答重写规则。

'rewrite'=>array('with_front'=> false,'slug'=>'/');

让我知道它是否起作用?

答案 2 :(得分:-1)

添加 'rewrite'=> array('with_front'=> false,'slug'=>'/');

适用于CTP,但会破坏常规博客PT