php实现当前IP显示
方案一:
<?php echo $_SERVER['REMOTE_ADDR'];?> // 获取用户IP地址
方案二:
添加以下代码到functions.php中:
// IP
function wpb_show_ip() {
$user_ip = $_SERVER['REMOTE_ADDR'];
return$user_ip;
}
add_shortcode('show_ip', 'wpb_show_ip');
add_filter( 'upload_mimes' , 'wpdit_filter_mime_types' );
function wpdit_filter_mime_types( $mimes )
{
$mimes [ 'ttf' ] = 'font/ttf' ;
$mimes [ 'woff' ] = 'font/woff' ;
$mimes [ 'svg' ] = 'font/svg' ;
$mimes [ 'eot' ] = 'font/eot' ;
return $mimes ;
}
然后输入简码:[ show_ip ]
注意:简码去点空格
温馨提示 : 非特殊注明,否则均为©李联华的博客网原创文章,本站文章未经授权禁止任何形式转载;IP地址:3.133.134.92,归属地:俄亥俄州Dublin ,欢迎您的访问!
文章链接:https://www.ooize.com/php-to-achieve-the-current-ip-display.html
文章链接:https://www.ooize.com/php-to-achieve-the-current-ip-display.html