llms_redirect_and_exit( $location, $options = array() )
Description Description
Source Source
File: includes/llms.functions.core.php
function llms_redirect_and_exit( $location, $options = array() ) { $options = wp_parse_args( $options, array( 'status' => 302, 'safe' => true, ) ); $func = $options['safe'] ? 'wp_safe_redirect' : 'wp_redirect'; call_user_func( $func, $location, $options['status'] ); exit(); }
Expand full source code Collapse full source code View on GitHub
User Contributed Notes User Contributed Notes
Permalink: