WordPress函数:wp_footer

一、函数简介

启动wp_footer动作。(Fires the wp_footer action.)  

二、函数参数

   

三、函数案例

<?php wp_footer() ?>
   

四、源代码

/**
 * Fires 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' );
}
   
THE END