bp_post_request()

The main action used for handling theme-side POST requests.

Description

Source

File: bp-core/bp-core-dependency.php

707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
function bp_post_request() {
 
    // Bail if not a POST action.
    if ( ! bp_is_post_request() ) {
        return;
    }
 
    // Bail if no action.
    if ( empty( $_POST['action'] ) ) {
        return;
    }
 
    // Sanitize the POST action.
    $action = sanitize_key( $_POST['action'] );
 
    /**
     * Fires at the end of the bp_post_request function.
     *
     * This dynamic action is probably the one you want to use. It narrows down
     * the scope of the 'action' without needing to check it in your function.
     *
     * @since BuddyPress 1.9.0
     */
    do_action( 'bp_post_request_' . $action );
 
    /**
     * Fires at the end of the bp_post_request function.
     *
     * Use this static action if you don't mind checking the 'action' yourself.
     *
     * @since BuddyPress 1.9.0
     *
     * @param string $action The action being run.
     */
    do_action( 'bp_post_request',   $action );
}

Changelog

Changelog
Version Description
BuddyPress 1.9.0 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.