2013-03-15 83 views
4

我創建了一個自定義後,並作了題爲模板文件的單postname.phpWordPress的自定義文章模板將不會加載

我不能得到的模板文件加載之前,我只想得到重新直接回到主頁,但在刷新.htaccess文件後,我只是得到一個空白頁面。

我試着刪除並再次添加帖子,更改了永久鏈接幾次,並改變了主題,似乎沒有任何工作。有什麼我可以做的嘗試迫使WordPress再次尋找文件?

的register_post_type

$labels = array( 
    'name' => _x('Conversations', 'conversation'), 
    'singular_name' => _x('Conversation', 'conversation'), 
    'add_new' => _x('Add New', 'conversation'), 
    'add_new_item' => _x('Add New Conversation', 'conversation'), 
    'edit_item' => _x('Edit Conversation', 'conversation'), 
    'new_item' => _x('New Conversation', 'conversation'), 
    'view_item' => _x('View Conversation', 'conversation'), 
    'search_items' => _x('Search Conversations', 'conversation'), 
    'not_found' => _x('No conversations found', 'conversation'), 
    'not_found_in_trash' => _x('No conversations found in Trash', 'conversation'), 
    'parent_item_colon' => _x('Parent Conversation:', 'conversation'), 
    'menu_name' => _x('Conversations', 'conversation'), 
); 

$args = array( 
    'labels' => $labels, 
    'hierarchical' => false, 
    'description' => 'conversation between users on the site', 
    'supports' => array('title', 'excerpt', 'author', 'comments', 'custom-fields'), 

    'public' => true, 
    'show_ui' => true, 
    'show_in_menu' => true, 
    'menu_position' => 20, 
    //'menu_icon' => 'http://findicons.com/files/icons/2229/social_media_mini/24/google_talk.png', 
    'show_in_nav_menus' => true, 
    'publicly_queryable' => true, 
    'exclude_from_search' => false, 
    'has_archive' => true, 
    'query_var' => true, 
    'can_export' => true, 
    'rewrite' => true, 
    'capability_type' => 'post' 
); 

register_post_type('conversation', $args); 

文件名=單conversation.php

+0

有作爲'單postname.php'沒有這樣的模板,你最有可能的意思是'單posttype.php'?如果這樣向我們展示自定義帖子類型代碼和模板文件的名稱。 – user2019515 2013-03-16 02:32:44

+0

這就是一切 – 2013-03-18 19:26:10

+1

在上週末,它開始工作,必須是緩存問題,但只要這個問題可以幫助人們,如果你寫一個解釋文件命名的答案,我會讓它成爲答案。 – 2013-03-18 19:30:07

回答

1

根據模板層次,如果你是在自定義後鍵入「XYZ」希望輸出的所有帖子的存檔,然後你會創建一個名爲「archive-xyz.php」的文件並將其放入你的page-templates目錄中。如果您希望在自定義帖子類型「xyz」下輸出單個帖子,則WordPress將查找名爲「single-xyz.php」的文件。

http://codex.wordpress.org/Template_Hierarchy

有我的企圖澄清:)

相關問題