WordPress插件插入带有快捷码的HTML代码 时间:2021-03-17 作者:st3f101 我想插入一个带有联系人表单7短代码的HTML块。如何在短代码转换为HTML之前插入HTML?function custom_shortcode_func() { $html = <<<HTML <h1>[contact-form-7 id="10" title="Contact form 1"]</h1> HTML; return $html; } add_shortcode(\'test_form\',\'custom_shortcode_func\'); 1 个回复 最合适的回答,由SO网友:Tom J Nowell 整理而成 使用do_shortcode 处理字符串中的任何短代码 文章导航