2017-09-03 56 views

回答

0

爲了拉入自定義字段/後期元,您需要在模板文件的WordPress循環中編寫一些代碼(https://codex.wordpress.org/The_Loop)。

The Loop是WordPress用來顯示帖子的PHP代碼。使用The Loop,WordPress會處理每個帖子以顯示在當前頁面上,並根據它與The Loop標籤中指定條件的匹配格式。循環中的任何HTML或PHP代碼將在每篇文章中處理。

例如,

if (have_posts()) { 
    while (have_posts()) { 
     the_post(); 
     // 
     // Post Content here 
     // 
    } // end while 
} // end if 

對於所有的後元:

$meta = get_post_meta(get_the_ID()); echo '<pre>'; print_r($meta); echo '</pre>';

或單個值:

$custom_field_value = get_post_meta(get_the_ID(), 'custom_field_key_name', true);

請閱讀下面的WordPress的法典的更多信息:

https://codex.wordpress.org/Custom_Fields

https://developer.wordpress.org/reference/functions/get_post_meta/

+0

你是什麼意思「的WP環路內您的模板文件:「 –

+0

答案已更新,更多信息 – Matthew

0

您可以使用Wp_Query與您使用CPT UI插件來顯示這些職位創造的職位名稱一起。像例如我已經創建了一個名爲學校,然後代碼,以顯示學校類型的所有帖子員額如下:

$query = new WP_Query(array('post_type' => 'school')); 
while($query->have_posts()): 
    $query->the_post(); 
    echo $query->ID; // it will print the ID of post 
endwhile; 

希望這將清除的東西..

+0

如果有任何答案幫助,請不要忘記進行投票;-) – Matthew