在WordPress页面和帖子中插入PHP代码

时间:2013-09-19 13:35:35

标签: php wordpress

我想知道使用PHP的访客国家并将其显示在WordPress页面中。但是当我在WordPress页面或Post中添加PHP代码时,它会给我错误。 我们如何在WordPress页面和帖子中添加PHP代码。

  <?PHP
   try{
        function visitor_country()
            {

                $client  = @$_SERVER['HTTP_CLIENT_IP'];
                $forward = @$_SERVER['HTTP_X_FORWARDED_FOR'];
                $remote  = $_SERVER['REMOTE_ADDR'];
                $result  = "Unknown";
                if(filter_var($client, FILTER_VALIDATE_IP))
                {
                    $ip = $client;
                }
                elseif(filter_var($forward, FILTER_VALIDATE_IP))
                {
                    $ip = $forward;
                }
                else
                {
                    $ip = $remote;
                }

                $ip_data = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=".$ip));

                if($ip_data && $ip_data->geoplugin_countryName != null)
                {
                    $result = array('ip'=>$ip,
                                    'continentCode'=>$ip_data->geoplugin_continentCode,
                                    'countryCode'=>$ip_data->geoplugin_countryCode,
                                    'countryName'=>$ip_data->geoplugin_countryName,
                                    );
                }

                return $result;
            }


           $visitor_details= visitor_country(); // Output Country name [Ex: United States]
           $country=$visitor_details['countryName'];

5 个答案:

答案 0 :(得分:55)

默认情况下,WordPress不会在帖子/页面内容中执行PHP,除非它有短代码。

最快捷,最简单的方法是使用一个插件,允许您运行嵌入在帖子内容中的PHP。

还有另外两种“快速简便”的方法可以在没有插件的情况下完成它:

  • 将其设为短代码(将其放入functions.php并让其回显国家名称),这非常简单 - 请参阅此处:Shortcode API at WP Codex

  • 将其放入模板文件 - 根据您的默认页面模板为该页面制作自定义模板,并将PHP添加到模板文件中,而不是发布内容:{{3 }}

答案 1 :(得分:13)

您无法在WordPress后端页面编辑器中使用PHP。也许你可以使用插件,但不是开箱即用。

最简单的解决方案是创建一个短代码。然后你可以使用这样的东西

function input_func( $atts ) {
    extract( shortcode_atts( array(
        'type' => 'text',
        'name' => '',
    ), $atts ) );

    return '<input name="' . $name . '" id="' . $name . '" value="' . (isset($_GET\['from'\]) && $_GET\['from'\] ? $_GET\['from'\] : '') . '" type="' . $type . '" />';
}
add_shortcode( 'input', 'input_func' );

请参阅Shortcode_API

答案 2 :(得分:5)

说明

有3个步骤可以在帖子或页面内运行PHP代码。

  1. functions.php文件中(在您的主题中)添加新功能

  2. functions.php文件中(在您的主题中)注册新的调用您的函数的短代码:

add_shortcode( 'SHORCODE_NAME', 'FUNCTION_NAME' );
  1. 使用新的简码

示例1 :仅显示文本。

在函数中:

function simple_function_1() {
    return "Hello World!";
}

add_shortcode( 'own_shortcode1', 'simple_function_1' );

在帖子/页面中

[own_shortcode1]

效果:

Hello World!

示例2 :用于循环。

在函数中:

function simple_function_2() {
    $output = "";
    
    for ($number = 1; $number < 10; $number++) {    
        // Append numbers to the string
        $output .= "$number<br>";
    } 
    
    return "$output";
}

add_shortcode( 'own_shortcode2', 'simple_function_2' );

在帖子/页面中

[own_shortcode2]

效果:

1
2
3
4
5
6
7
8
9

示例#3 :使用带参数的简码

在函数中:

function simple_function_3($name) {
    return "Hello $name";
}

add_shortcode( 'own_shortcode3', 'simple_function_3' );

在帖子/页面中

[own_shortcode3 name="John"]

效果:

Hello John

示例#3 -不传递参数

在帖子/页面中:

[own_shortcode3]

效果:

Hello 

答案 3 :(得分:3)

您可以为此创建单独的页面模板,也可以使用此插件http://wordpress.org/plugins/exec-php/

创建页面模板是不错的选择。

答案 4 :(得分:2)

当我试图完成非常相似的事情时,我最终做了一些事情:

可湿性粉剂内容/主题/资源/ functions.php的

add_action('init', 'my_php_function');
function my_php_function() {
    if (stripos($_SERVER['REQUEST_URI'], 'page-with-custom-php') !== false) {
        // add desired php code here
    }
}