wordpress - 在bbpress的下拉列表中获取论坛列表

时间:2014-02-21 06:10:30

标签: wordpress wordpress-plugin bbpress

我在Wordpress中使用bbpress插件进行论坛。我需要在下拉列表中显示论坛列表,点击“应用”按钮,它将根据所选论坛显示主题结果。

下面是一个参考网站,类似于我想在我的项目中做的。

http://manhattanbeachpageant.com/forum/active?forum=All

另外我需要知道在下面的函数中传递什么参数才能得到结果?

<?php if ( bbp_has_topics( $bbp_loop_args ) ) : ?>
    <?php while ( bbp_topics() ) : bbp_the_topic(); ?>

        <?php bbp_get_template_part( 'loop', 'single-topic' ); ?>

    <?php endwhile; ?>
<?php endif;?>

其中

$bbp_loop_args = array();

那么我将如何在下拉列表中显示论坛列表我需要在上面的数组中传递什么参数?

0 个答案:

没有答案