Shortcode to display users IP address in posts & pages
wordpress snippet
Adding this snippet to the functions.php of your wordpress theme will let you use a shortcode to display the users IP address in your posts or pages.
snippet : PHPcopy
function display_user_ip() {
$ip = $_SERVER['REMOTE_ADDR'];
return $ip;
}
add_shortcode('user_ip', 'display_user_ip');
snippet : SHORTCODEcopy
[ip]
this months featured snippets
- http://wpsites.net/ Brad Dalton
- Jaybe
- Djenar











