BP_REST_Learndash_Courses_Endpoint::prepare_password_response( string $password )

Prepare response for the password protected posts.

Description

Parameters

$password

(Required) WP_Post password.

Return

(mixed)

Source

File: bp-integrations/learndash/classes/class-bp-rest-learndash-courses-endpoint.php

791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
public function prepare_password_response( $password ) {
    if ( ! empty( $password ) ) {
        /**
         * Fake the correct cookie to fool post_password_required().
         * Without this, get_the_content() will give a password form.
         */
        require_once ABSPATH . 'wp-includes/class-phpass.php';
 
        $hasher = new PasswordHash( 8, true );
        $value  = $hasher->HashPassword( $password );
 
        $_COOKIE[ 'wp-postpass_' . COOKIEHASH ] = wp_slash( $value );
    }
 
    return $password;
}

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.