bbp_theme_before_anonymous_form

bbp_theme_before_anonymous_form

Hook Type: action

See hook in core

Displaying hooks found in version: bbpress.2.6.9

do_action('bbp_theme_before_anonymous_form') is found 1 times:

  • /templates/default/bbpress/form-anonymous.php line 15
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    defined( 'ABSPATH' ) || exit;
     
    if ( bbp_current_user_can_access_anonymous_user_form() ) : ?>
     
        <?php do_action( 'bbp_theme_before_anonymous_form' ); ?>
     
        <fieldset class="bbp-form">
            <legend><?php ( bbp_is_topic_edit() || bbp_is_reply_edit() ) ? esc_html_e( 'Author Information', 'bbpress' ) : esc_html_e( 'Your information:', 'bbpress' ); ?></legend>
     
            <?php do_action( 'bbp_theme_anonymous_form_extras_top' ); ?>