触发wp_footer动作。
原型
wp_footer()
描述
请参阅’wp_footer’。
源文件
路径:wp-includes/general-template.php
<?php
...
function wp_footer() {
/**
* Prints scripts or data before the closing body tag on the front end.
*
* @since 1.5.1
*/
do_action( 'wp_footer' );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/wp_footer/