描述
源码
更新日志
版本 | 描述 |
---|---|
1.5.1 | 开始引入 |
使用示例
示例:
<body> <!-- All the document's HTML goes first. --> <!-- Then last, before closing the body tag, add: --> <?php wp_footer(); ?> </body>
您可以将javascript代码添加到站点的页脚
function wpdocs_js_code_example() { ?> <script type="text/javascript"> /* add your js code here */ </script> <?php } add_action( 'wp_footer', 'wpdocs_js_code_example' );