Skip to content

Instantly share code, notes, and snippets.

@sabhari-krr
Created May 23, 2025 07:25
Show Gist options
  • Save sabhari-krr/51e7efcaaa733443f1852d803cd010f7 to your computer and use it in GitHub Desktop.
Save sabhari-krr/51e7efcaaa733443f1852d803cd010f7 to your computer and use it in GitHub Desktop.
Fetch Site Address (URL) instead of WordPress Address (URL)
add_filter('wlr_get_referral_url', function( $url, $code ){
if(empty($code)){
return $url;
}
return add_query_arg('wlr_ref', $code, home_url());
}, 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment