0
進出口使用來自WordPress站點的例子添加新的信息類型,即時通訊使用wp3.2.1,這是如下WordPress的 - 古怪的帖子模板問題
// Add custom post type for the case studies
add_action('init', 'create_casestudy_post_type');
function create_casestudy_post_type() {
register_post_type('case_study',
array(
'labels' => array(
'name' => __('Case Studies'),
'singular_name' => __('Case Studies')
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'case-studies')
)
);
}
此代碼我已經把在functions.php中文件在我的主題目錄中。
問題是當我嘗試查看網址時,它返回404頁面未找到...即時消息使用single-case_study.php爲頁面模板,但它只是404的所有時間。
我的固定鏈接設置爲自定義結構中的/%category%/%postname%/。
任何幫助? ..這是真的竊聽我出去
乾杯
當您嘗試查看帖子時,永久鏈接結構是什麼樣子的?您是否正在通過管理面板中的鏈接查看帖子? –