我在 WordPress 中为事件创建了一个自定义帖子类型。我的index.php页面基于二十个十二主题,因为它设置了循环,然后将渲染传递给部分模板:
<?php get_header();
if (have_posts()) {
while (have_posts()) {
the_post();
get_template_part('content', get_post_format());
}
}
else {
get_template_part('content', 'none');
}
get_sidebar();
get_footer();
但是,在查看事件帖子时,get_post_format()
只返回一个空字符串(我希望它返回event
或类似的),然后只加载content.php模板部分而不是content-event.php这是我所期望的其实想要。
如何将我的事件帖子类型报告event
作为其帖子格式?