wpseek.com
WordPress开发者和主题制作者的搜索引擎



add_thickbox › WordPress Function

Since2.5.0
已弃用n/a
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.


源码

function add_thickbox() {
	wp_enqueue_script( 'thickbox' );
	wp_enqueue_style( 'thickbox' );

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