当前浏览:首页 / WordPress函数 / wp_footer()

wp_footer()

触发wp_footer动作

footer


描述

‘wp_footer’



源码

查看源码 官方文档


更新日志

版本描述
1.5.1开始引入

使用示例

  • 示例1

    示例:

    <body>
    	<!-- All the document's HTML goes first. -->
    	<!-- Then last, before closing the body tag, add: -->
    	<?php wp_footer(); ?>
    </body>
    
  • 示例2

    您可以将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' );