WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Plugin API/Action Reference/admin head-(page hook)

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

Example

<?php
add_action('admin_head-post-new.php','my_action_admin_head_post_new');
function my_action_admin_head_post_new(){
	global $hook_suffix;
	echo 'I want to write a new post and I will be in ' , $hook_suffix;
}
?>

See more {$page_hook}: Plugin API/Admin Screen Reference