functions.php で次のコードを使用して、カスタム投稿タイプ - Press - を作成しました。
// Press Custom Post Type //
function press_custom_init() {
$labels = array(
'name' => _x('Press', 'post type general name'),
'singular_name' => _x('Press', 'post type singular name'),
'add_new' => _x('Add New', 'press'),
'add_new_item' => __('Add New Press Item'),
'edit_item' => __('Edit Item'),
'new_item' => __('New Press Item'),
'view_item' => __('View Press Item'),
'search_items' => __('Search Press'),
'not_found' => __('Nothing found'),
'not_found_in_trash' => __('Nothing found in Trash'),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => false,
'query_var' => true,
'rewrite' => array('slug','pages'),
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 5,
'supports' => array('title','editor','thumbnail','excerpt',)
);
register_post_type( 'press' , $args );
}
add_action( 'init', 'press_custom_init' );
その投稿タイプの項目を追加し、ナビゲーション バーにメニュー項目を追加しましたが、リンクをクリックすると、「投稿が見つかりません」というメッセージが表示されます。
ここで見ることができます: http://s13.mynewsitereview.com//press
助けてください!