您好,我使用的是现代部落事件插件,我想针对每个类别显示不同的页面布局。根据插件文档,我应该使用:
if (tribe_event_in_category('my-category-slug')) { /* Do something */ }
我的自定义布局文件是custom-template.php。有人可以告诉我如何实现此功能吗?谢谢。
function my_custom_function() {
if (tribe_event_in_category('one-day-conferences')) {
/* Do something */
}
}
add_action( 'template_redirect', 'my_custom_function' );