本文整理汇总了PHP中bootstrapBasicEditPostLink函数的典型用法代码示例。如果您正苦于以下问题:PHP bootstrapBasicEditPostLink函数的具体用法?PHP bootstrapBasicEditPostLink怎么用?PHP bootstrapBasicEditPostLink使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bootstrapBasicEditPostLink函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: the_ID
<!-- debug: bootstrap-basic/content-page.php -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<div class="clearfix"></div>
<?php
/**
* This wp_link_pages option adapt to use bootstrap pagination style.
* The other part of this pager is in inc/template-tags.php function name bootstrapBasicLinkPagesLink() which is called by wp_link_pages_link filter.
*/
wp_link_pages(array(
'before' => '<div class="page-links">' . __('Pages:', 'bootstrap-basic') . ' <ul class="pagination">',
'after' => '</ul></div>',
'separator' => ''
));
?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php bootstrapBasicEditPostLink(); ?>
</footer>
</article><!-- #post-## -->
示例2: bootstrapBasicCommentsPopupLink
?>
</div><!--.entry-meta-category-tag-->
<?php
}
// End if 'post' == get_post_type()
?>
<div class="entry-meta-comment-tools">
<?php
if (!post_password_required() && (comments_open() || '0' != get_comments_number())) {
?>
<span class="comments-link"><?php
bootstrapBasicCommentsPopupLink();
?>
</span>
<?php
}
//endif;
?>
<?php
bootstrapBasicEditPostLink();
?>
</div><!--.entry-meta-comment-tools-->
</footer><!-- .entry-meta -->
</article><!-- #post-## -->