Codex

Plugin API/Action Reference/admin print scripts

Contents

Description

admin_print_scripts mainly used to echo inline javascript. admin_print_scripts should not be used to enqueue styles or scripts on the admin pages. Use admin_enqueue_scripts instead.

Usage

<?php add_action( 'admin_print_scripts', 'function_name' ); ?>

where "function_name" is the name of the function to be called.

Example

function admin_inline_js(){
	echo "<script type='text/javascript'>\n";
	echo 'var pluginUrl = "'.WP_PLUGIN_URL . '/my_plugin/'.'"';
	echo "\n</script>";
}
add_action( 'admin_print_scripts', 'admin_inline_js' );

result

<script type='text/javascript'>
var pluginUrl = "http://website.com/wp-content/plugins/my_plugin/"
</script>

Note

admin_print_scripts should not be used to enqueue styles or scripts on the admin pages. Use admin_enqueue_scripts instead.

See also

External Links

This page is marked as incomplete. You can help Codex by expanding it.