如何更改默认帖子的永久链接?

时间:2015-04-22 04:27:48

标签: wordpress

我想将默认帖子的永久链接更改为\blog\post-name,但同时我不想更改其他自定义帖子类型的永久链接。

3 个答案:

答案 0 :(得分:0)

欢迎来到SO!

在此链接上阅读,如何change permalink of a single post

在每个帖子下方,您会看到其永久链接,请查看下面的图片。只需点击编辑并将其更改为您想要的任何内容

enter image description here

答案 1 :(得分:0)

您可以在信息中心>中更改“帖子”的永久链接结构设置>固定链接。

最终自定义帖子类型的永久链接结构不会改变beacuse是通过插件或脚本为每个自定义帖子类型设置的(为了您的信息,它会发生在'rewrite' => array('slug' => 'your-cpt-permalink-slug')指令中)。

答案 2 :(得分:0)

创建自定义帖子类型。不要忘记更改文本域“ booksinfo”

将此代码添加到functions.php

function blog_post_type() {
// Set UI labels for Custom Post Type
    $labels = array(
        'name'                => esc_html__( 'Blogs', 'booksinfo' ),
        'singular_name'       => esc_html__( 'Blog', 'booksinfo' ),
        'menu_name'           => esc_html__( 'Blogs', 'booksinfo' ),
        'parent_item_colon'   => esc_html__( 'Parent Blog', 'booksinfo' ),
        'all_items'           => esc_html__( 'All Blogs', 'booksinfo' ),
        'view_item'           => esc_html__( 'View Blog', 'booksinfo' ),
        'add_new_item'        => esc_html__( 'Add new Blog', 'booksinfo' ),
        'add_new'             => esc_html__( 'Add New', 'booksinfo' ),
        'edit_item'           => esc_html__( 'Edit Blog', 'booksinfo' ),
        'update_item'         => esc_html__( 'Update Blog', 'booksinfo' ),
        'search_items'        => esc_html__( 'Search Blog', 'booksinfo' ),
        'not_found'           => esc_html__( 'Not Found', 'booksinfo' ),
        'not_found_in_trash'  => esc_html__( 'Not found in Trash', 'booksinfo' ),
    );
     
// Set other options for Custom Post Type
     
    $args = array(
        'label'               => esc_html__( 'blog', 'booksinfo' ),
        'description'         => esc_html__( 'blogs news', 'booksinfo' ),
        'labels'              => $labels,
        'supports'            => array( 'title', 'editor', 'author', 'thumbnail', 'comments', 'revisions', ),
        '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',
        'menu_icon'            => 'dashicons-star-empty',
        'taxonomies'          => array( 'post_tag','category'),

);
     
    // Registering your Custom Post Type
    register_post_type( 'blog', $args );
 
}
add_action( 'init', 'blog_post_type', 0 );