我有一个主题,我正在通过儿童主题进行编辑。我已经能够创建自定义页面模板,因为我想使用自定义页面添加特定帖子类型的分类信息。
自定义页面包含以下代码
<div id="primary" class="content-area col-sm-12 col-md-8 <?php echo of_get_option( 'site_layout' ); ?>">
<main id="main" class="site-main" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) :
comments_template();
endif;
?>
<?php endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
我需要在每个描述下面添加分类信息。说邮政类型的名称是食物我如何添加上面的代码,以显示每个帖子的分类(创建,大小,时间,类型)信息。
答案 0 :(得分:1)
根据帖子ID在while循环中为类别列表添加以下代码。
Vim does not support open mode, since it's not really useful. For those
situations where ":open" would start open mode Vim will leave Ex mode, which
allows executing the same commands, but updates the whole screen instead of
only one line.