添加短代码(Short Code Function)以在 WordPress 帖子或页面中包含任何 PHP 或 HTML 文件


有时候, 我们想要在WordPress的帖子或页面中包含 PHP 或者 HTML 或者其它外部文件, 这时我们可以使用以下PHP代码在WordPress中先添加一个短代码Short Code Function功能:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function include_php_in_wordpress($atts) {
    extract(shortcode_atts(
        array(
            'src' => ''
    ), $atts));
 
    if ($src!= '') {
        if (is_file($src)) {
            return @file_get_contents($src);
        } else {
            return "";
        }
    }
}
 
add_shortcode('include_php_in_wordpress', 'include_php_in_wordpress_func');
function include_php_in_wordpress($atts) {
    extract(shortcode_atts(
        array(
            'src' => ''
    ), $atts));

    if ($src!= '') {
        if (is_file($src)) {
            return @file_get_contents($src);
        } else {
            return "";
        }
    }
}

add_shortcode('include_php_in_wordpress', 'include_php_in_wordpress_func');

你可以将其添加到你的主题Theme Child Template 模板(子主题)的函数中, 这样在Wordpress帖子或页面中, 可以这样来调用其执行或者包括指定的文件(PHP/HTML):

1
[include_php_in_wordpress src="/path-to-the-php/hello.php"]
[include_php_in_wordpress src="/path-to-the-php/hello.php"]

如果你想在一些帖子中包含一些PHP文件, 比如”相关文章”, 你可以手动选择这些帖子, 将它们保存在一个外部PHP或HTML文件中, 然后在所有相关的帖子中使用上述短代码功能来包含它. 这样, 如果你想要在”相关文章”列表中插入或移除帖子, 就不需要更新那些相关帖子了.

英文: 添加短代码(Short Code Function)在 WordPress 帖子或页面中包含任何 PHP 或 HTML 文件

Wordpress博客技术文章

GD Star Rating
loading...
本文一共 251 个汉字, 你数一下对不对.
添加短代码(Short Code Function)以在 WordPress 帖子或页面中包含任何 PHP 或 HTML 文件. (AMP 移动加速版本)
上一篇: 老大英国小学毕业了
下一篇: 利用Telegram机器人开始创业: 启发您的创新点子

扫描二维码,分享本文到微信朋友圈
9ea43c111cab8c8b8446675fe62debc6 添加短代码(Short Code Function)以在 WordPress 帖子或页面中包含任何 PHP 或 HTML 文件 wordpress 小技巧 编程

评论