BBP_Shortcodes::display_lost_pass()

Display a lost password form

Description

Return

(string)

Source

File: bp-forums/common/shortcodes.php

772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
public function display_lost_pass() {
 
    // Unset globals
    $this->unset_globals();
 
    // Start output buffer
    $this->start( 'bbp_lost_pass' );
 
    // Output templates
    if ( !is_user_logged_in() )
        bbp_get_template_part( 'form',     'user-lost-pass' );
    else
        bbp_get_template_part( 'feedback', 'logged-in'      );
 
    // Return contents of output buffer
    return $this->end();
}

Changelog

Changelog
Version Description
bbPress (r3302) Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.