本文整理匯總了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 */