Insert PHP code In WordPress Page and Post

后端 未结 4 506
栀梦
栀梦 2020-11-28 07:15

I want to know Visitor country using PHP and display it in to a WordPress Page.But when I add PHP code in WordPress page or Post it give me error. How can we add PHP code in

4条回答
  •  迷失自我
    2020-11-28 08:04

    When I was trying to accomplish something very similar, I ended up doing something along these lines:

    wp-content/themes/resources/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
        }
    }
    

提交回复
热议问题