当前位置: 首页>>代码示例>>PHP>>正文


PHP bp_directory_forums_search_form函数代码示例

本文整理汇总了PHP中bp_directory_forums_search_form函数的典型用法代码示例。如果您正苦于以下问题:PHP bp_directory_forums_search_form函数的具体用法?PHP bp_directory_forums_search_form怎么用?PHP bp_directory_forums_search_form使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了bp_directory_forums_search_form函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _e

 &nbsp;<a class="button show-hide-new" href="#new-topic" id="new-topic-button"><?php 
    _e('New Topic', 'buddypress');
    ?>
</a><?php 
}
?>
</h3>

				<?php 
do_action('bp_before_directory_forums_content');
?>

				<div id="forums-dir-search" class="dir-search" role="search">

					<?php 
bp_directory_forums_search_form();
?>

				</div>
			</form>

			<?php 
do_action('bp_before_topics');
?>

			<form action="" method="post" id="forums-directory-form" class="dir-form">

				<div class="item-list-tabs" role="navigation">
					<ul>
						<li class="selected" id="forums-all"><a href="<?php 
echo trailingslashit(bp_get_root_domain() . '/' . bp_get_forums_root_slug());
开发者ID:shieldsdesignstudio,项目名称:forefield,代码行数:31,代码来源:bp-forums.php

示例2: get_header

<?php get_header() ?>

	<div id="content">
		<div class="padder">

		<form action="" method="post" id="forums-search-form" class="dir-form">

			<h3><?php _e( 'Group Forums Directory', 'buddypress' ) ?><?php if ( is_user_logged_in() ) : ?> &nbsp;<a class="button" href="#new-topic" id="new-topic-button"><?php _e( 'New Topic', 'buddypress' ) ?></a><?php endif; ?></h3>

			<?php do_action( 'bp_before_directory_forums_content' ) ?>

			<div id="forums-dir-search" class="dir-search">
				<?php bp_directory_forums_search_form() ?>
			</div>
		</form>

		<div id="new-topic-post">
			<?php if ( is_user_logged_in() ) : ?>

				<?php if ( bp_has_groups( 'user_id=' . bp_loggedin_user_id() . '&type=alphabetical&max=100&per_page=100' ) ) : ?>

					<form action="" method="post" id="forum-topic-form" class="standard-form">

						<?php do_action( 'groups_forum_new_topic_before' ) ?>

						<a name="post-new"></a>
						<h5><?php _e( 'Post a New Topic:', 'buddypress' ) ?></h5>

						<label><?php _e( 'Title:', 'buddypress' ) ?></label>
						<input type="text" name="topic_title" id="topic_title" value="" />
开发者ID:n-sane,项目名称:zaroka,代码行数:30,代码来源:index.php


注:本文中的bp_directory_forums_search_form函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。