我有aj-fashions自定義帖子類型。從技術上說,我試圖在名爲fashio-template.php的模板文件中顯示所有帖子的循環,現在爲單個帖子創建了文件single-fashions.php。仍然我正在404頁面找不到錯誤。自定義帖子類型單頁不起作用
請注意,以下是我的代碼。
add_action('init', 'fashion');
function fashion() {
register_post_type('aj-fashion',
array(
'labels' => array(
'name' => __('AJ Fasions'),
'singular_name' => __('AJ Fashion')
),
'public' => true,
'has_archive' => true,
'show_ui' => true,
'hierarchical' => false,
'rewrite' => array('slug' => 'aj-fashions',),
'supports'=> array('title', 'editor', 'thumbnail', 'author'),
)
);
}
adding flush_rewrite_rules();工作。 –
什麼是單個帖子特定的帖子循環? –
從設置更新固定鏈接。 –