在帖子或页面上从自定义插件输出html

时间:2019-12-31 作者:sialfa

有没有办法创建一个插件,在页面或帖子上输出自定义html?我可以使用短代码,但如果有其他方法,请告诉我。

1 个回复
SO网友:Arpit Patel

要在主题文件函数中创建短代码,请编写代码。php

 function my_shortcode_fun() {
        $output = $class = \'\';
        ob_start(); 
            enter code here....
        $output = ob_get_contents();
        ob_end_clean();
        return $output;
    }
    add_shortcode(\'my-shortcode\', \'my_shortcode_fun\');

相关推荐

在WordPress网站上用MathJax编写LaTeX公式:最简单的方法(可能不会影响Header.php)?

我试图在我的网站的数学部分添加一些使用乳胶的数学公式,http://onlinemathbiz.com/linear-algebra/. 我已经安装了MathJax,可以从设置中看到它。然而,当我试图用Elemenator编辑上述网站时,我在显示数学方面遇到了问题。以下是我尝试的内容:我继续使用Elementor编辑它,然后首先选择小部件“文本编辑器”,然后选择“自定义HTML”,并尝试键入以下内容:$\\sqrt(2)$ [math] \\sqrt(2) [/math] 。。