Valid filenames for add_action’s first parameter

Some examples in WordPress’ docs pass a filename to add_action rather than an action name. For example,

add_action( 'load-post.php', 'callback' );
add_action( 'load-post-new.php', 'callback' );

What are the valid filenames for the first argument in add_action?

Related posts

Leave a Reply

1 comment