我在function.php中使用了一些X钩子。我需要知道哪个页面触发了此操作,需要获取引荐来源网址并重定向到该页面并成功使用。
function bp_plugin_hook_activity_posted_update( $content, $user_id, $activity_id, $event_id ) {
$userEmails = 'xxx@gmail.com';
if(!empty($userEmails))
wp_mail( $userEmails, 'shared an event!', "content" , 'Content-Type: text/html' );
}
add_action( 'bp_activity_posted_update', 'bp_plugin_hook_activity_posted_update', 10, 3 );
请参阅下面的AJAX resuest,
action:post_update
cookie:bp-members-scope%3Dall%26bp-activity-oldestpage%3D1
_wpnonce_post_update:df8c1689d4
content:http://localhost/sitename/event/atx-startup-crawl-at-austin-startup-week-2017/
event_id:1132
visibility:followers
object:
_bp_as_nonce:
答案 0 :(得分:0)
使用wp_localize_script
创建js referrer变量,在数据中ajax传递此变量并在函数中处理它
答案 1 :(得分:0)
您可以使用wp_get_referer()和wp_get_original_referer()函数来获取它。