本文整理汇总了PHP中bp_forum_pagination函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_forum_pagination函数的具体用法?PHP bp_forum_pagination怎么用?PHP bp_forum_pagination使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bp_forum_pagination函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: do_action
<?php
do_action('bp_after_directory_forums_list');
?>
<div id="pag-bottom" class="pagination">
<div class="pag-count" id="topic-count-bottom">
<?php
bp_forum_pagination_count();
?>
</div>
<div class="pagination-links" id="topic-pag-bottom">
<?php
bp_forum_pagination();
?>
</div>
</div>
<?php
} else {
?>
<div id="message" class="info">
<p><?php
_e('Sorry, there were no forum topics found.', 'wplms_modern');
?>
</p>
</div>
示例2: do_action
<?php do_action( 'bp_directory_forums_extra_row' ) ?>
<?php endwhile; ?>
</tbody>
</table>
<?php do_action( 'bp_after_directory_forums_list' ) ?>
<div id="pag-bottom" class="pagination">
<div class="pag-count" id="topic-count-bottom">
<?php bp_forum_pagination_count() ?>
</div>
<div class="pagination-links" id="topic-pag-bottom">
<?php bp_forum_pagination() ?>
</div>
</div>
<?php else: ?>
<div id="message" class="info">
<p><?php _e( 'Sorry, there were no forum topics found.', 'buddypress' ) ?></p>
</div>
<?php endif;?>
<?php do_action( 'bp_after_forums_loop' ) ?>