我在WordPress主題發展很新的,我有用於顯示我的主頁留言本WP功能有些懷疑:如何使用WordPress在主頁上顯示帖子?
<?php
if (have_posts()) :
// Start the Loop.
while (have_posts()) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part('content', get_post_format());
endwhile;
// Previous/next post navigation.
twentyfourteen_paging_nav();
else :
// If no content, include the "No posts found" template.
get_template_part('content', 'none');
endif;
?>
直觀地我明白了,只要有職位,這些都顯示在主頁。
我的疑問是有關這個行代碼:
get_template_part('content', get_post_format());
閱讀,在我看來,該文件:
1)get_template_part:加載模板的一部分轉換爲模板。所以我認爲通過這一行我將包含一個用於顯示帖子的模板部分(我的主頁中的帖子結構),它是正確的嗎?
2)get_post_format()到底是什麼?