本文整理汇总了PHP中wp_redirect函数的典型用法代码示例。如果您正苦于以下问题:PHP wp_redirect函数的具体用法?PHP wp_redirect怎么用?PHP wp_redirect使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wp_redirect函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: cp
/**
* s2Member's PayPal Auto-Return/PDT handler (inner processing routine).
*
* @package s2Member\PayPal
* @since 110720
*
* @param array $vars Required. An array of defined variables passed by {@link s2Member\PayPal\c_ws_plugin__s2member_paypal_return_in::paypal_return()}.
* @return array|bool The original ``$paypal`` array passed in (extracted) from ``$vars``, or false when conditions do NOT apply.
*/
public static function cp($vars = array())
{
extract($vars);
foreach (array_keys(get_defined_vars()) as $__v) {
$__refs[$__v] =& ${$__v};
}
do_action("ws_plugin__s2member_during_paypal_return_before_no_return_data", get_defined_vars());
unset($__refs, $__v);
$paypal["s2member_log"][] = "No Return-Data. Customer MUST wait for Email Confirmation.";
$paypal["s2member_log"][] = "Note. This can sometimes happen when/if you are offering an Initial/Trial Period. There are times when a Payment Gateway will NOT supply s2Member with any data immediately after checkout. When/if this happens, s2Member must process the transaction via IPN only (i.e. behind-the-scene), and the Customer must wait for Email Confirmation in these cases.";
$paypal["s2member_log"][] = var_export($_REQUEST, true);
foreach (array_keys(get_defined_vars()) as $__v) {
$__refs[$__v] =& ${$__v};
}
do_action("ws_plugin__s2member_during_paypal_return_during_no_return_data", get_defined_vars());
unset($__refs, $__v);
if ($custom_success_redirection) {
$paypal["s2member_log"][] = "Redirecting Customer to a custom URL: " . $custom_success_redirection . ".";
wp_redirect($custom_success_redirection);
} else {
$paypal["s2member_log"][] = "Redirecting Customer to the Home Page (after asking Customer to check their email).";
echo c_ws_plugin__s2member_return_templates::return_template($paypal["subscr_gateway"], _x('<strong>Thank you! (you MUST check your email before proceeding).</strong><br /><br />* Note: It can take <em>(up to 15 minutes)</em> for Email Confirmation with important details. If you don\'t receive email confirmation in the next 15 minutes, please contact Support.', "s2member-front", "s2member") . ($GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["paypal_sandbox"] || c_ws_plugin__s2member_utils_conds::pro_is_installed() && !empty($GLOBALS["WS_PLUGIN__"]["s2member"]["o"]["pro_" . $paypal["subscr_gateway"] . "_sandbox"]) ? '<br /><br />' . _x('<strong>** Sandbox Mode **</strong> You may NOT receive this Email in Sandbox Mode. Sandbox addresses are usually bogus (for testing).', "s2member-front", "s2member") : ''), _x("Back To Home Page", "s2member-front", "s2member"), home_url("/"));
}
foreach (array_keys(get_defined_vars()) as $__v) {
$__refs[$__v] =& ${$__v};
}
do_action("ws_plugin__s2member_during_paypal_return_after_no_return_data", get_defined_vars());
unset($__refs, $__v);
return apply_filters("c_ws_plugin__s2member_paypal_return_in_no_tx_data", $paypal, get_defined_vars());
}
开发者ID:novichkovv,项目名称:candoweightloss,代码行数:39,代码来源:paypal-return-in-no-tx-data.inc.php
示例2: respond
function respond($result, $status = 'ok')
{
global $gb_json_api;
$json = $this->get_json($result, $status);
$status_redirect = "redirect_{$status}";
if ($gb_json_api->query->dev || !empty($_REQUEST['dev'])) {
// Output the result in a human-redable format
if (!headers_sent()) {
header('HTTP/1.1 200 OK');
header('Content-Type: text/plain; charset: UTF-8', true);
} else {
echo '<pre>';
}
echo $this->prettify($json);
} else {
if (!empty($_REQUEST[$status_redirect])) {
wp_redirect($_REQUEST[$status_redirect]);
} else {
if ($gb_json_api->query->redirect) {
$url = $this->add_status_query_var($gb_json_api->query->redirect, $status);
wp_redirect($url);
} else {
if ($gb_json_api->query->callback) {
// Run a JSONP-style callback with the result
$this->callback($gb_json_api->query->callback, $json);
} else {
// Output the result
$this->output($json);
}
}
}
}
exit;
}
开发者ID:simplon-emmanuelD,项目名称:Simplon-INESS,代码行数:34,代码来源:response.php
示例3: edd_process_gateway_select
/**
* Processes gateway select on checkout. Only for users without ajax / javascript
*
* @since 1.7
*
* @param $data
*/
function edd_process_gateway_select($data)
{
if (isset($_POST['gateway_submit'])) {
wp_redirect(add_query_arg('payment-mode', $_POST['payment-mode']));
exit;
}
}
开发者ID:nitun,项目名称:Easy-Digital-Downloads,代码行数:14,代码来源:actions.php
示例4: manage
public function manage() {
global $meow_provider, $wf;
$this->setup_view( array(
"title_args" => array( "text" => __("Site Content", MASTERPRESS_DOMAIN) )
)
);
$site = $wf->site();
MasterPress::$view->sets = self::assigned_field_sets();
MPC::incl("meta");
MPV::incl("meta");
if (MPC::is_postback()) {
// save the meta - this code should be moved into the controller at some stage
MPC_Meta::save_site_meta($site->id());
// redirect back to here
wp_redirect( MasterPress::admin_url( "site-content", "manage", array("updated" => "true"), false ) );
exit();
}
}
开发者ID:verbazend,项目名称:AWFA,代码行数:26,代码来源:mpc-site-content.php
示例5: so_profile_redirect
function so_profile_redirect()
{
$result = stripos($_SERVER['REQUEST_URI'], 'profile.php');
if ($result !== false) {
wp_redirect(get_option('siteurl') . '/wp-admin/index.php');
}
}
开发者ID:SpiritPixels,项目名称:Code-Snippets,代码行数:7,代码来源:block-profile-and-redirect.php
示例6: optimizer_assign_widgets
function optimizer_assign_widgets()
{
$optimizer = get_option('optimizer');
$active_widgets = get_option('sidebars_widgets');
if (isset($_POST['assign_widgets']) && check_admin_referer('optimizer_assign_widgets', 'optimizer_assign_widgets')) {
if (empty($active_widgets['front_sidebar']) && empty($optimizer)) {
//ABOUT SECTION--------------------------------------------
$active_widgets['front_sidebar'][] = 'optimizer_front_about-1';
$about_content[1] = array('title' => __('THE OPTIMIZER', 'optimizer'), 'subtitle' => __('a little about..', 'optimizer'), 'content' => __('Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.', 'optimizer'), 'divider' => 'fa-stop', 'title_color' => '#222222', 'content_color' => '#a8b4bf', 'content_bg' => '#ffffff');
update_option('widget_optimizer_front_about', $about_content);
//BLOCKS SECTION--------------------------------------------
$active_widgets['front_sidebar'][] = 'optimizer_front_blocks-1';
$blocks_content[1] = array('block1title' => __('Lorem Ipsum', 'optimizer'), 'block1img' => '', 'block1content' => __('Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.', 'optimizer'), 'block2title' => __('Lorem Ipsum', 'optimizer'), 'block2img' => '', 'block2content' => __('Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.', 'optimizer'), 'block3title' => __('Lorem Ipsum', 'optimizer'), 'block3img' => '', 'block3content' => __('Lorem ipsum dolor sit amet, consectetur dol adipiscing elit. Nam nec rhoncus risus. In ultrices lacinia ipsum, posuere faucibus velit bibe.', 'optimizer'), 'block4title' => '', 'block4img' => '', 'block4content' => '', 'block5title' => '', 'block5img' => '', 'block5content' => '', 'block6title' => '', 'block6img' => '', 'block6content' => '', 'blockstitlecolor' => '#555555', 'blockstxtcolor' => '#999999', 'blocksbgcolor' => '#f5f5f5');
update_option('widget_optimizer_front_blocks', $blocks_content);
//WELCOME TEXT SECTION--------------------------------------------
$active_widgets['front_sidebar'][] = 'optimizer_front_text-1';
$text_content[1] = array('title' => __('This Title wont be shown', 'optimizer'), 'content' => __('Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI.', 'optimizer'), 'padtopbottom' => '2', 'paddingside' => '2', 'parallax' => '', 'content_color' => '#ffffff;', 'content_bg' => '#333333;', 'content_bgimg' => '');
update_option('widget_optimizer_front_text', $text_content);
//POSTS SECTION--------------------------------------------
$active_widgets['front_sidebar'][] = 'optimizer_front_posts-1';
$posts_content[1] = array('title' => __('Our Work', 'optimizer'), 'subtitle' => __('Checkout Our Work', 'optimizer'), 'layout' => '1', 'type' => 'post', 'pages' => '', 'count' => '6', 'category' => '', 'divider' => 'fa-stop', 'navigation' => 'numbered', 'postbgcolor' => '', 'titlecolor' => '#333333', 'secbgcolor' => '#ffffff');
update_option('widget_optimizer_front_posts', $posts_content);
//Update the empty frontpage sidebar with widgets
update_option('sidebars_widgets', $active_widgets);
$redirect = admin_url('/customize.php');
wp_redirect($redirect);
}
}
}
开发者ID:jojo1311,项目名称:myBlogDesign,代码行数:29,代码来源:init.php
示例7: check_access
/**
*
*/
public function check_access()
{
if (is_page(WC_Vendors::$pv_options->get_option('orders_page')) && !is_user_logged_in()) {
wp_redirect(get_permalink(woocommerce_get_page_id('myaccount')));
exit;
}
}
开发者ID:soydiegomen,项目名称:plazajilo,代码行数:10,代码来源:class-orders.php
示例8: custom_remove_no_admin_access
function custom_remove_no_admin_access()
{
if (!defined('DOING_AJAX') && !current_user_can('manage_options')) {
wp_redirect(home_url());
die;
}
}
开发者ID:fluxinetwork,项目名称:fluxi_wp_start,代码行数:7,代码来源:admin.php
示例9: redirection
/**
* will redirect old links to new link structures.
*/
public static function redirection()
{
global $wpdb, $wp_query;
if (is_object($wp_query) && $wp_query->get('em_redirect')) {
//is this a querystring url?
if ($wp_query->get('event_slug')) {
$event = $wpdb->get_row('SELECT event_id, post_id FROM ' . EM_EVENTS_TABLE . " WHERE event_slug='" . $wp_query->get('event_slug') . "' AND (blog_id=" . get_current_blog_id() . " OR blog_id IS NULL OR blog_id=0)", ARRAY_A);
if (!empty($event)) {
$EM_Event = em_get_event($event['event_id']);
$url = get_permalink($EM_Event->post_id);
}
} elseif ($wp_query->get('location_slug')) {
$location = $wpdb->get_row('SELECT location_id, post_id FROM ' . EM_LOCATIONS_TABLE . " WHERE location_slug='" . $wp_query->get('location_slug') . "' AND (blog_id=" . get_current_blog_id() . " OR blog_id IS NULL OR blog_id=0)", ARRAY_A);
if (!empty($location)) {
$EM_Location = em_get_location($location['location_id']);
$url = get_permalink($EM_Location->post_id);
}
} elseif ($wp_query->get('category_slug')) {
$url = get_term_link($wp_query->get('category_slug'), EM_TAXONOMY_CATEGORY);
}
if (!empty($url)) {
wp_redirect($url, 301);
exit;
}
}
}
开发者ID:pcco,项目名称:portal-redesign,代码行数:29,代码来源:em-permalinks.php
示例10: do_redirects
/**
* Do the PHP redirect
*/
public function do_redirects()
{
// Check if PHP redirects are enabled.
if (false == $this->is_php_redirects_enabled()) {
return;
}
// Load redirects.
$redirects = $this->get_redirects();
// Do the actual redirect.
if (!empty($redirects)) {
// Decode the URL.
$url = htmlspecialchars_decode(urldecode($_SERVER['REQUEST_URI']));
foreach ($redirects as $regex => $redirect) {
// Check if the URL matches the $regex.
if (1 === @preg_match("`{$regex}`", $url, $this->url_matches)) {
// Replace the $regex vars with URL matches.
$redirect_url = preg_replace_callback('/[\\$0-9]+/', array($this, 'format_redirect_url'), $redirect['url']);
if ('/' === substr($redirect_url, 0, 1)) {
$redirect_url = home_url($redirect_url);
}
// Do the redirect.
wp_redirect($redirect_url, $redirect['type']);
exit;
}
// Reset url_matches.
$this->url_matches = array();
}
}
}
开发者ID:mazykin46,项目名称:portfolio,代码行数:32,代码来源:class-regex-redirect-manager.php
示例11: login_auth
/**
* Authenticate login
*
* @param string $username
* @param string $password
* @param bool $remember_login
* @param string $login_form_id
* @param string $redirect
*
* @return string/void
*/
static function login_auth($username, $password, $remember_login = true, $login_form_id = '', $redirect)
{
do_action('pp_before_login_validation', $username, $password, $login_form_id);
/* start filter Hook */
$login_errors = new WP_Error();
// call validate reg from function
$login_form_errors = apply_filters('pp_login_validation', $login_errors, $login_form_id);
if (is_wp_error($login_form_errors) && $login_form_errors->get_error_code() != '') {
return $login_form_errors;
}
/* End Filter Hook */
$creds = array();
$creds['user_login'] = $username;
$creds['user_password'] = $password;
if ($remember_login == 'true') {
$creds['remember'] = true;
}
$user = wp_signon($creds);
if (is_wp_error($user) && $user->get_error_code()) {
return $user;
} elseif (!is_wp_error($user)) {
do_action('pp_before_login_redirect', $username, $password, $login_form_id);
$login_redirect = !empty($redirect) ? $redirect : pp_login_redirect();
/** Setup a custom location of the builder */
$login_redirection = apply_filters('pp_login_redirect', $login_redirect, $login_form_id);
wp_redirect($login_redirection);
exit;
}
}
开发者ID:artre,项目名称:study,代码行数:40,代码来源:class.login-form-auth.php
示例12: uploads_proxy
/**
* Get uploads from the production site and store them
* in the local filesystem if they don't already exist.
*
* @return void
*/
function uploads_proxy()
{
global $wp_filesystem;
WP_Filesystem();
// The relative request path
$requestPath = $_SERVER['REQUEST_URI'];
// The relative uploads path
$uploadsPath = str_replace(get_bloginfo('url'), '', wp_upload_dir()['baseurl']);
// Check if a upload was requested
if (strpos($requestPath, $uploadsPath) === 0) {
// The absolute remote path to the upload
$remotePath = UP_SITEURL . $requestPath;
// Get the remote upload file
$response = wp_remote_get($remotePath);
// Check the response code
if ($response['response']['code'] === 200) {
// The file path relative to the uploads path to store the upload file to
$relativeUploadFile = str_replace($uploadsPath, '', $_SERVER['REQUEST_URI']);
// The absolute file path to store the upload file to
$absoluteUploadFile = wp_upload_dir()['basedir'] . $relativeUploadFile;
// Make sure the upload directory exists
wp_mkdir_p(pathinfo($absoluteUploadFile)['dirname']);
if ($wp_filesystem->put_contents(urldecode($absoluteUploadFile), $response['body'], FS_CHMOD_FILE)) {
// Redirect to the stored upload
wp_redirect($requestPath);
}
}
}
}
开发者ID:betawax,项目名称:uploads-proxy,代码行数:35,代码来源:uploads-proxy.php
示例13: _instagram_auth
function _instagram_auth()
{
$id = $_REQUEST['gallery'];
session_start();
$source = $_SESSION['asg_instagram_client_data'];
$auth_params = array('body' => array('client_id' => $source['client_id'], 'client_secret' => $source['client_secret'], 'grant_type' => 'authorization_code', 'redirect_uri' => $this->get_redirect_url($id), 'code' => $_REQUEST['code']));
$response = asg_remote_post('https://api.instagram.com/oauth/access_token', $auth_params);
if (is_wp_error($response)) {
wp_redirect(admin_url('admin.php?page=asg-instagram-auth-failure&message=' . urlencode($response->get_error_message())));
exit;
}
if ($response['body']) {
$body = json_decode($response['body']);
if ($body->access_token) {
wp_redirect(admin_url('admin.php?page=asg-instagram-auth-success&insta_token=' . $body->access_token));
exit;
}
}
if ($response['response']) {
wp_redirect(admin_url('admin.php?page=asg-instagram-auth-failure&message=' . $response['response']['message']));
exit;
}
wp_redirect(admin_url('admin.php?page=asg-instagram-auth-failure&message=' . urlencode('Unknown error')));
exit;
}
开发者ID:jcwproductions,项目名称:jcwproductions-blog,代码行数:25,代码来源:editor.class.php
示例14: redirect_to_settings
function redirect_to_settings()
{
//First preserve all errors that have been generated
set_transient('settings_errors', get_settings_errors(), 30);
//Call settings url
wp_redirect($this->get_redirect_url() . '&settings-updated=true');
}
开发者ID:philgutowski,项目名称:photo-express-for-google,代码行数:7,代码来源:class-google-photo-access.php
示例15: install_actions
/**
* Install actions such as installing pages when a button is clicked.
*/
public function install_actions()
{
// Install - Add pages button
if (!empty($_GET['install_woocommerce_pages'])) {
self::create_pages();
// We no longer need to install pages
delete_option('_wc_needs_pages');
delete_transient('_wc_activation_redirect');
// What's new redirect
wp_redirect(admin_url('index.php?page=wc-about&wc-installed=true'));
exit;
// Skip button
} elseif (!empty($_GET['skip_install_woocommerce_pages'])) {
// We no longer need to install pages
delete_option('_wc_needs_pages');
delete_transient('_wc_activation_redirect');
// What's new redirect
wp_redirect(admin_url('index.php?page=wc-about'));
exit;
// Update button
} elseif (!empty($_GET['do_update_woocommerce'])) {
$this->update();
// Update complete
delete_option('_wc_needs_pages');
delete_option('_wc_needs_update');
delete_transient('_wc_activation_redirect');
// What's new redirect
wp_redirect(admin_url('index.php?page=wc-about&wc-updated=true'));
exit;
}
}
开发者ID:anagio,项目名称:woocommerce,代码行数:34,代码来源:class-wc-install.php
示例16: check_page
function check_page()
{
if (get_option('zn_theme_needs_update') && (!isset($_GET['page']) || isset($_GET['page']) && $_GET['page'] != 'zn-update') && !ZN()->is_request('ajax')) {
wp_redirect(admin_url('index.php?page=zn-update'));
exit;
}
}
开发者ID:rock1media,项目名称:wordpress,代码行数:7,代码来源:class-zn-about.php
示例17: pipes_plugin_redirect
public function pipes_plugin_redirect()
{
if (get_option('pipes_plugin_do_activation_redirect', false)) {
delete_option('pipes_plugin_do_activation_redirect');
wp_redirect("admin.php?page=pipes.pipes");
}
}
开发者ID:kosir,项目名称:wp-pipes,代码行数:7,代码来源:pipes.php
示例18: activateLicense
/**
* Activated the given EDD license.
*
* @return void
* @since 1.7.1
*/
public function activateLicense($option)
{
if ($this->settings['id'] != $option->settings['id']) {
return;
}
/* Get the license */
$license = esc_attr($this->getValue());
/* License ID */
$key = substr(md5($license), 0, 10);
/* If the license is set we can handle activation. */
if (strlen($license) > 0) {
/* First of all we check if the user requested a manual activation */
if (isset($_GET['eddactivate']) && '1' == $_GET['eddactivate']) {
global $pagenow;
if (isset($_GET)) {
$get = (array) $_GET;
}
if (isset($get['eddactivate'])) {
unset($get['eddactivate']);
}
$this->check($license, 'activate_license');
/* Redirect to the settings page without the eddactivate parameter (otherwise it's used in all tabs links) */
wp_redirect(wp_sanitize_redirect(add_query_arg($get, admin_url($pagenow))));
}
/* First activation of the license. */
if (false == get_transient("tf_edd_license_try_{$key}")) {
$this->check($license, 'activate_license');
}
}
}
开发者ID:majick777,项目名称:Titan-Framework,代码行数:36,代码来源:class-option-edd-license.php
示例19: prepare
protected function prepare()
{
include ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
try {
$this->api = $api = Sputnik::get_plugin($this->id);
} catch (Exception $e) {
status_header(500);
$this->header();
echo '<p>' . $e->getMessage() . '</p>';
$this->footer();
return;
}
if (!Sputnik::is_purchased($this->api->slug)) {
wp_redirect(Sputnik_Admin::build_url(array('buy' => $this->id)));
die;
}
if (!current_user_can('install_plugins')) {
wp_die(__('You do not have sufficient permissions to install plugins for this site.', 'sputnik'));
}
check_admin_referer($this->nonce_prefix . $this->api->slug);
include_once ABSPATH . 'wp-admin/includes/plugin-install.php';
$title = sprintf($this->title_format, $this->api->name . ' ' . $this->api->version);
$nonce = $this->nonce_prefix . $this->id;
$url = 'update.php?action=install-plugin&plugin=' . $this->id;
if (isset($_GET['from'])) {
$url .= '&from=' . urlencode(stripslashes($_GET['from']));
}
$type = 'web';
//Install plugin type, From Web or an Upload.
if ($this->api->is_theme) {
$this->upgrader = new Sputnik_ThemeUpgrader(new Sputnik_View_Install_Skin(compact('title', 'url', 'nonce', 'plugin', 'api')));
} else {
$this->upgrader = new Sputnik_Upgrader(new Sputnik_View_Install_Skin(compact('title', 'url', 'nonce', 'plugin', 'api')));
}
}
开发者ID:dreamteam111,项目名称:dreamteam,代码行数:35,代码来源:Install.php
示例20: wplms_dashboard_template
function wplms_dashboard_template()
{
if (!is_user_logged_in()) {
wp_redirect(site_url());
}
$template = 'templates/dashboard';
global $bp;
if ($bp->current_component == 'dashboard') {
wp_enqueue_style('wplms-dashboard-css', WPLMS_DASHBOARD_URL . '/css/wplms-dashboard.css', array(), '1.0');
wp_enqueue_script('wplms-dashboard-js', WPLMS_DASHBOARD_URL . '/js/wplms-dashboard.js', array('jquery', 'jquery-ui-sortable'), '1.0');
if (is_active_widget(false, false, 'wplms_instructor_dash_stats', true) || is_active_widget(false, false, 'wplms_dash_stats', true)) {
wp_enqueue_script('wplms-sparkline', WPLMS_DASHBOARD_URL . '/js/jquery.sparkline.min.js', array('jquery'), true);
}
if (is_active_widget(false, false, 'wplms_instructor_stats', true) || is_active_widget(false, false, 'wplms_instructor_commission_stats', true) || is_active_widget(false, false, 'wplms_student_stats', true)) {
wp_enqueue_script('wplms-raphael', WPLMS_DASHBOARD_URL . '/js/raphael-min.js', array('jquery'), true);
wp_enqueue_script('wplms-morris', WPLMS_DASHBOARD_URL . '/js/morris.min.js', array('jquery'), true);
}
$translation_array = array('earnings' => __('Earnings', 'wplms-dashboard'), 'payout' => __('Payout', 'wplms-dashboard'), 'students' => __('# Students', 'wplms-dashboard'), 'saved' => __('SAVED', 'wplms-dashboard'), 'saving' => __('SAVING ...', 'wplms-dashboard'), 'stats_calculated' => __('Stats Calculated, reloading page ...', 'wplms-dashboard'));
wp_localize_script('wplms-dashboard-js', 'wplms_dashboard_strings', $translation_array);
}
$located_template = apply_filters('bp_located_template', locate_template($template, false), $template);
if ($located_template && $located_template != '') {
bp_get_template_part(apply_filters('bp_load_template', $located_template));
} else {
bp_core_load_template(apply_filters('bp_core_template_plugin', 'members/single/dashboard'));
}
}
开发者ID:akshayxhtmljunkies,项目名称:brownglock,代码行数:27,代码来源:functions.php
注:本文中的wp_redirect函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论