我是WordPress的新手,我开发了一个代码,可以在小部件中单击带有某些样式的按钮后加载iframe。但是它破坏了模板的布局,我想知道如何将我的函数添加到模板中。
<a id="fazer_pedido" href="https://example.com" onclick="document.getElementById(\'load-chat\');
this.style.cursor = \'default\';
this.style.opacity = \'0.1\';
document.getElementById(\'load-chat\').height = \'400px\';
document.getElementById(\'load-chat\').style.boxShadow = \'0px 3px 15px #e4e4e4\';
document.getElementById(\'load-chat\').style.borderRadius = \'15px\';" target="load-chat">Load the iframe</a>
<iframe frameborder="0" id="load-chat" name="load-chat" scrolling="0" style="overflow:hidden" width="100%"/>
我想我需要将函数添加到函数中。php,但我不知道怎么做。