在 WordPress 內可以把樣板(template)給分開,讓我們的 code 更好維護,而 get_template_part() 就是幫助我們把樣板讀進來的函式。
讀進來的方法也很簡單,把樣板給放到使用中佈景主題的 template-parts 的資料夾內,我在裡面建立一個 content.php 的檔案,之後就可以透過以下方法讀入:
get_template_part('template-parts/content');
使用 get_template_part() 就能更簡單處理要用迴圈顯示的內容了,其實用起來跟 require() 很類似,只是在 WordPress 裡面用 get_template_part() 意思會更清楚。