在帖子或页面上从自定义插件输出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\'); 文章导航