个性化阅读
专注于IT技术分析

在WordPress中获取自定义帖子类型以加载自定义模板

我已经在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


采用:

if(get_post_type()):
    get_template_part( 'content', get_post_type() );
else:
    get_template_part( 'content', get_post_format() );
endif;
赞(0)
未经允许不得转载:srcmini » 在WordPress中获取自定义帖子类型以加载自定义模板

评论 抢沙发

评论前必须登录!