WordPress函数:add_thickbox

一、函数简介

对默认的ThickBox js和css进行排队。(Enqueues the default ThickBox js and css.)  

二、函数参数

   

三、函数案例

<?php add_thickbox() ?>
   

四、源代码

/**
 * Enqueues the default ThickBox js and css.
 *
 * If any of the settings need to be changed, this can be done with another js
 * file similar to media-upload.js. That file should
 * require array('thickbox') to ensure it is loaded after.
 *
 * @since 2.5.0
 */
function add_thickbox() {
	wp_enqueue_script( 'thickbox' );
	wp_enqueue_style( 'thickbox' );

	if ( is_network_admin() ) {
		add_action( 'admin_head', '_thickbox_path_admin_subfolder' );
	}
}
   
THE END