簡體   English   中英

自定義帖子永久鏈接重定向到主頁

[英]Custom post permalink redirects to homepage

自定義帖子永久鏈接重定向到主頁。

當單擊admin中的永久鏈接時,URL重定向到homepage。

同樣,單-{post type} .php也無法正常工作。

請幫忙!

function fovit_events_post_type() 
{
    $labels = array(
        'name'                  => __('Events','mfn-opts'),
        'singular_name'         => __('Events','mfn-opts'),
        'add_new'               => __('Add New','mfn-opts'),
        'add_new_item'          => __('Add New Events','mfn-opts'),
        'edit_item'             => __('Edit Events','mfn-opts'),
        'new_item'              => __('New Events','mfn-opts'),
        'view_item'             => __('View Events','mfn-opts'),
        'search_items'          => __('Search Events','mfn-opts'),
        'not_found'             => __('No events found','mfn-opts'),
        'not_found_in_trash'    => __('No events found in Trash','mfn-opts'), 
        'parent_item_colon'     => ''
      );

    $args = array(
        'labels'                => $labels,
        'menu_icon'             => 'dashicons-controls-volumeon',
        'public'                => true,
        'publicly_queryable'    => true,
        'show_ui'               => true, 
        'query_var'             => true,
        'capability_type'       => 'post',
        'hierarchical'          => false,
        'menu_position'         => null,
        'rewrite'               => array( 'slug' => $events_item_slug, 'with_front'=>true ),
        'supports'              => array( 'title','thumbnail','editor' ),
    ); 

    register_post_type( 'events', $args );

    register_taxonomy( 'events-types', 'events', array(
        'hierarchical'          => true,
        'label'                 =>  __('Event categories','mfn-opts'),
        'singular_label'        =>  __('Event category','mfn-opts'),
        /*'rewrite'             => true,*/
        'query_var'             => true
    ));
}
}
add_action( 'init', 'fovit_events_post_type' );

轉到設置->永久鏈接,然后重新更新結構永久鏈接。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM