我生成了自定义小部件textarea。
正常的文本工作,但是当我在短文中放入短代码(如:<div>
<ul>
<li id="left-container"><a href="#">Browse</a></li>
<li id="right-container"><a href="#">Upload</a></li>
</ul>
</div>
)时,短代码不起作用。
[contact-form-7 id="538" title="widget_subscription"]
我使用此代码function.php文件。
答案 0 :(得分:0)
我相信你需要这段代码:
/* WP function to add_shortcode support. */
add_shortcode('your-shortcode', 'do_shortcode');
/* Your callable */
function do_shortcode(...) { ... }
答案 1 :(得分:0)
只需将此代码添加到主题的functions.php
即可add_filter('widget_text','do_shortcode');