我已经在WordPress中为事件创建了自定义帖子类型。我的index.php页面基于二十十二个主题, 它设置了The Loop, 然后将渲染传递给部分模板:
<
?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()仅返回一个空字符串(我希望它返回事件或类似的内容), 然后仅加载content.php模板的一部分, 而不是content-event.php。我在期待并且实际上想要。
如何使事件发布类型的报告事件成为其发布格式?
#1我想你对发布格式和发布类型感到困惑。你这里需要的是get_post_type()。
#2【在WordPress中获取自定义帖子类型以加载自定义模板】采用:
if(get_post_type()):
get_template_part( 'content', get_post_type() );
else:
get_template_part( 'content', get_post_format() );
endif;
推荐阅读
- get_home_url()仅返回当前URL
- 子CSS的函数theme_enqueue_styles()
- 在WordPress Penscratch主题的文件管理中找到custom-header.php
- 致命错误(内存不足(已分配407633920)(尝试分配16063字节))
- 致命错误(调用未定义函数wp_cache_get()&&&致命错误:调用未定义函数wp_cache_get())
- WordPress中的动态电话号码
- Divi子主题打破了WordPress定制器
- 定制程序配色方案不传递颜色
- 调用未定义的函数gd_info()