wp_footer()
記述場所:</body>の直前。
参照:WordPress Codex-wp_footer()
構文
wp_footer()
wp_footer()の詳細
動 作
wp_footerアクションフックを起動する。
返り値
なし
引 数
なし
wp_footer()のコード
参照:wp-includes/general-template.php
<?php /** * Fire the wp_footer action. * * See {@see 'wp_footer'}. * * @since 1.5.1 */ function wp_footer() { /** * Prints scripts or data before the closing body tag on the front end. * * @since 1.5.1 */ do_action( 'wp_footer' ); } ?>
wp_footer()を使ったコード例
<!--footer.php内--> <?php wp_footer(); ?> </body> </html>