wordpress get_template_part()について
get_tempalte_part()は引数に指定したテンプレートをインクルードしてくれる関数です。テーマを作成したことあるならget_header()やget_footer()などをつかってheader.phpやfooter.phpなどがインクルードされるのを知っていると思います。get_template_part()はそのget_header()やget_footer()みたいなテンプレートのインクルードを好きに指定できる関数です。
content.phpをインクルードしたい場合
content.phpの「content」がget_template_part()の $slug になります。なのでcontent.phpをインクルードしたいときは
get_template_part(‘content’);
とすればOKです。
content-single.phpをインクルードしたい場合
content-single.phpの「content」が$slug、「single」が $name になります。なのでcontent-single.phpをインクルードしたいときは
get_template_part(‘content’, ‘single’);
とすればOKです。
こちらの記事から抜粋させて頂きました。
http://www.youngflavor.net/2013/12/826/