Brand Theme

GETTING STARTED

SUPPORT

Need help? Our team is here for you.

View Brand documentation Ask in the forum

$email, ); $response = wp_remote_post( 'https://api.wp-brandtheme.com/1.0/' . md5( $email ), array( 'body' => $args ) ); if( is_wp_error( $response ) ) { $response = array( 'msg' => $response->get_error_message(), 'error' => true, ); wp_send_json( $response ); } $response = json_decode( wp_remote_retrieve_body( $response ) ); $response = array( 'msg' => $response->msg, 'error' => $response->error, ); wp_send_json( $response ); } } add_action( 'wp_ajax_brand_subscribe', 'brand_subscribe' );