模板代码正在检查帖子类型是否为post
, 并且仅显示post元信息,如果是true
:
if ( \'post\' === get_post_type() ): ?>
自自定义帖子类型
ngobin
正在查看,返回上述检查
false
因此不会显示元数据。解决方法很简单;将post类型检查更改为
ngobin
:
if ( \'ngobin\' === get_post_type() ): ?>
<div class="post-details">
<i class="fa fa-user"></i><?php the_author(); ?>
<i class="fa fa-clock-o"></i> <time><?php the_time(\'m/j/y g:i A\'); ?></time>
<i class="fa fa-folder"></i> <?php the_category(\', \' ) ?>
<i class="fa fa-tags"></i> <?php the_tags(); ?>
<div class="post-comments-badge"><a href="<?php comments_link(); ?>"><i class="fa fa-comments"></i><?php comments_number( 0, 1, \'%\' ); ?></a>
</div> <!-- post-comments-badge-->
<?php edit_post_link( \'Edit\', \'<i class="fa fa-pencil"></i>\', \'\' ); ?>
</div>
</div>
<?php endif; ?>