Ok, that sounds like a rather confusing title, let me explain.
I have created a custom post type (CPT) and I want to add some summary information about the posts of that post type above their listing (where the filter and bulk action buttons are), the page in question would be:
http://www.example.com/wp-admin/edit.php?post_type={cpt}
Is there a hook for this ? Since I donât really know what to call this area, i am not finding anything doing any further searches.
You can use the
admin_notices
action for that:Change
your_post_type
to whatever your custom post type slug is.Also see
get_current_screen
for more info on that function.