Skip to content

Instantly share code, notes, and snippets.

@railmedia
Last active November 3, 2023 11:41
Show Gist options
  • Select an option

  • Save railmedia/e7177a2519905a485db141e65022cc93 to your computer and use it in GitHub Desktop.

Select an option

Save railmedia/e7177a2519905a485db141e65022cc93 to your computer and use it in GitHub Desktop.
BNFW plugin detect user IP address
function bnfw_custom_get_user_ip_address() {
return $_SERVER['REMOTE_ADDR'];
}
add_shortcode( 'custom_user_ip_address', 'bnfw_custom_get_user_ip_address' );
add_filter( 'wp_mail', function( $args ) {
$args['message'] = do_shortcode( $args['message'] );
return $args;
}, 1, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment