我明白当使用get_template_part(\'content\', get_post_format());
这将有助于选择post format
对于特定页面,请根据帖子格式。
如果没有“即标准”的post格式,那么它将回退到content.php
但如果我用content-single.php
有这样的逻辑:
if (get_post_format() == false) {
get_template_part(\'content\', \'single\');
} else {
get_template_part(\'content\', get_post_format());
}
我还需要吗
content.php
页还有其他我不知道的功能吗?