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 redirects to an external site: https://developer.wordpress.org/reference/hooks/admin_head-hook_suffix/

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