私は自分のウェブサイトに「プロファイル」というカテゴリを持っています。このカテゴリを「プロファイル」というカスタム投稿タイプに移動する過程にあります。
私の問題は、このカスタム投稿タイプのアーカイブページを表示できないことです。 mywebsite.com/profiles
というURLにアクセスすると、プロフィールカテゴリ内の投稿のための単一の投稿ページに移動します。
私は私のhas_archive = true;
にfunctions.php
を含めました
私は同じウェブサイトで私がした別のカスタム投稿タイプのためのアーカイブページを作成することに問題がなかったので、私は本当にこれがなぜ今回はうまくいかないかについて迷った。
何かアドバイスは最もありがたいですか?
add_action( 'init', 'profile_custom_init' );
/* Here's how to create your customized labels */
function profile_custom_init() {
$labels = array(
'name' => _x( 'Profiles', 'post type general name' ), // Tip: _x('') is used for localization
'singular_name' => _x( 'Profile', 'post type singular name' ),
'add_new' => _x( 'Add New', 'Profile' ),
'add_new_item' => __( 'Add Profile' ),
'edit_item' => __( 'Edit Profile' ),
'new_item' => __( 'New Profile' ),
'view_item' => __( 'View Profile' ),
'search_items' => __( 'Search Profile' ),
'not_found' => __( 'No Profile found' ),
'not_found_in_trash' => __( 'No Profile found in Trash' ),
'parent_item_colon' => ''
);
// Create an array for the $args
$args = array( 'labels' => $labels, /* NOTICE: the $labels variable is used here... */
'public' => true,
'publicly_queryable' => true,
'has_archive' => true,
'show_ui' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 10,
'supports' => array( 'title', 'editor','thumbnail', 'excerpt', 'custom-fields' ),
'taxonomies' => array('category')
);
register_post_type( 'profile', $args ); /* Register it and move on */
}
これでhtaccessファイルが再書き込みされ、その後再書き込みが機能するはずです。
上記の解決策がうまくいかない場合 - それはサーバーの設定に関連するはずです。
Aapache2
実行します:a2enmod rewrite && service Apache2 reload
Nginx
フォロー: https://do.co/2LjCF8r
これがあなたの時間を節約することを願っています。
パーマリンク構造を保存し直すことで問題は解決したようです。 MikeとVinodの情報をありがとう。