本文整理汇总了PHP中bbp_form_topic_title函数的典型用法代码示例。如果您正苦于以下问题:PHP bbp_form_topic_title函数的具体用法?PHP bbp_form_topic_title怎么用?PHP bbp_form_topic_title使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bbp_form_topic_title函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: bbp_get_template_part
<?php
bbp_get_template_part('form', 'anonymous');
?>
<?php
do_action('bbp_theme_before_topic_form_title');
?>
<p>
<label for="bbp_topic_title"><?php
printf(__('Topic Title (Maximum Length: %d):', 'bbpress'), bbp_get_title_max_length());
?>
</label><br />
<input type="text" id="bbp_topic_title" value="<?php
bbp_form_topic_title();
?>
" tabindex="<?php
bbp_tab_index();
?>
" size="40" name="bbp_topic_title" maxlength="<?php
bbp_title_max_length();
?>
" />
</p>
<?php
do_action('bbp_theme_after_topic_form_title');
?>
<?php
示例2: _e
<p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p>
</div>
<?php endif; ?>
<?php do_action( 'bbp_template_notices' ); ?>
<div>
<?php bbp_get_template_part( 'form', 'anonymous' ); ?>
<?php do_action( 'bbp_theme_before_topic_form_title' ); ?>
<p>
<label for="bbp_topic_title"><?php printf( __( 'Topic Title (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br />
<input type="text" id="bbp_topic_title" value="<?php bbp_form_topic_title(); ?>" tabindex="<?php bbp_tab_index(); ?>" size="40" name="bbp_topic_title" maxlength="<?php bbp_title_max_length(); ?>" />
</p>
<?php do_action( 'bbp_theme_after_topic_form_title' ); ?>
<?php do_action( 'bbp_theme_before_topic_form_content' ); ?>
<?php bbp_the_content( array( 'context' => 'topic' ) ); ?>
<?php do_action( 'bbp_theme_after_topic_form_content' ); ?>
<?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?>
<p class="form-allowed-tags">
<label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label><br />
<code><?php bbp_allowed_tags(); ?></code>