_thickbox_path_admin_subfolder()WP 3.1.0

Prints thickbox image paths for Network Admin.

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

null. Nothing (null).

Usage

_thickbox_path_admin_subfolder();

Changelog

Since 3.1.0 Introduced.

_thickbox_path_admin_subfolder() code WP 6.5.2

<?php
function _thickbox_path_admin_subfolder() {
	?>
<script type="text/javascript">
var tb_pathToImage = "<?php echo esc_js( includes_url( 'js/thickbox/loadingAnimation.gif', 'relative' ) ); ?>";
</script>
	<?php
}