single-event.php ファイルという名前の単一ページに表示するカスタム投稿タイプ「イベント」を作成しましたが、404 エラーが発生します。使用してもこの問題を解決するにはどうすればよいですか
flush_rewrite_rules();
私の問題を解決するのを手伝ってください...ここに私のコードがあります..
function custom_event() {
$labels = array(
'name' => _x('Event', 'post type general name'),
'singular_name' => _x('Event', 'post type singular name'),
'add_new' => _x('Add Event', 'Content'),
'add_new_item' => __('Add New Event'),
'edit_item' => __('Edit Event'),
'new_item' => __('New Content'),
'view_item' => __('View Event'),
'search_items' => __('Search Content'),
'not_found' => __('Nothing found'),
'parent_item_colon' => '',
'menu_name' => __('Event')
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'query_var' => true,
'rewrite' => true,
'capability_type' => 'post',
'has_archive' => true,
'hierarchical' => false,
'menu_position' => 20,
'supports' => array( 'title', 'editor')
);
flush_rewrite_rules();
register_post_type('event', $args);
}
//$wp_rewrite->flush_rules();
//add_action('admin_init', 'flush_rewrite_rules');
add_action ('init', 'custom_event');