本文整理汇总了PHP中the_bootstrap_content_nav函数的典型用法代码示例。如果您正苦于以下问题:PHP the_bootstrap_content_nav函数的具体用法?PHP the_bootstrap_content_nav怎么用?PHP the_bootstrap_content_nav使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了the_bootstrap_content_nav函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: the_title
"><h4><?php
the_title();
?>
</h4></a>
<?php
the_content('Continue Reading...');
?>
<a href="<?php
echo get_permalink();
?>
"class="label label-info pull-right"><i class="icon-comment icon-white"></i></a>
</div>
</article>
<?php
}
?>
<?php
the_bootstrap_content_nav('nav-below');
} else {
?>
<p><?php
_e('Sorry, no posts matched your criteria.');
?>
</p>
<?php
}
?>
</div>
<?php
get_footer();
示例2: printf
<h1 class="page-title"><?php
printf(__('Category Archives: %s', 'the-bootstrap'), '<span>' . single_cat_title('', false) . '</span>');
?>
</h1>
<?php
if ($category_description = category_description()) {
echo apply_filters('category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>');
}
?>
</header><!-- .page-header -->
<?php
while (have_posts()) {
the_post();
get_template_part('/partials/content', get_post_format());
}
the_bootstrap_content_nav();
} else {
get_template_part('/partials/content', 'not-found');
}
?>
</div><!-- #content -->
</section><!-- #primary -->
<?php
get_sidebar();
get_footer();
/* End of file index.php */
/* Location: ./wp-content/themes/the-bootstrap/category.php */