How do I echo the post type? 时间:2011-03-14 作者:jwp <?php $post_type = get_post_type( $post->ID ); if $post_type == \'project\' : echo \'Work\'; ?>我如何才能使上述工作?我希望这样,如果帖子类型是“projects”,那么它会回应“Work”。另外,我想添加另一个if post type is \'movies\' then it echoes \'Film\' 最重要的是。 2 个回复 最合适的回答,由SO网友:Jaquis 整理而成 据我所知,这里有一个语法错误。尝试以下操作:<?php $post_type = get_post_type( $post->ID ); if ($post_type == \'project\') echo \'Work\'; ?> 还有,一定要看看艾琳说了什么。卡彭特在对你的问题的评论中说。 SO网友:Rarst 为什么不使用为自定义帖子类型设置的本机标签?$post_type = get_post_type_object($post->post_type); echo $post_type->labels->singular_name; 结束 文章导航