本文整理汇总了PHP中bbp_reply_form_fields函数的典型用法代码示例。如果您正苦于以下问题:PHP bbp_reply_form_fields函数的具体用法?PHP bbp_reply_form_fields怎么用?PHP bbp_reply_form_fields使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了bbp_reply_form_fields函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: do_action
</button>
<?php
do_action('bbp_theme_after_reply_form_submit_button');
?>
</div>
<?php
do_action('bbp_theme_after_reply_form_submit_wrapper');
?>
</div>
<?php
bbp_reply_form_fields();
?>
</fieldset>
<?php
do_action('bbp_theme_after_reply_form');
?>
</form>
</div>
<?php
} elseif (bbp_is_topic_closed()) {
?>
示例2: do_action
<?php do_action( 'bbp_theme_before_reply_form_submit_button' ); ?>
<?php bbp_cancel_reply_to_link(); ?>
<button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_reply_submit" name="bbp_reply_submit" class="button submit"><?php _e( 'Submit', 'bbpress' ); ?></button>
<?php do_action( 'bbp_theme_after_reply_form_submit_button' ); ?>
</div>
<?php do_action( 'bbp_theme_after_reply_form_submit_wrapper' ); ?>
</div>
<?php bbp_reply_form_fields(); ?>
</fieldset>
<?php do_action( 'bbp_theme_after_reply_form' ); ?>
</form>
</div>
<?php elseif ( bbp_is_topic_closed() ) : ?>
<div id="no-reply-<?php bbp_topic_id(); ?>" class="bbp-no-reply">
<div class="bbp-template-notice">
<p><?php printf( __( 'The topic ‘%s’ is closed to new replies.', 'bbpress' ), bbp_get_topic_title() ); ?></p>
</div>
</div>