Wordpress hook to add content under title or post status buttons on edit.php
I'm looking to add some content above the wp_list_table for a custom post type. I have custom bulk actions and filters but would like to add some further content to this header area. I cant seem to find a hook that will get me into the header. The only one I can seem to find is 'all_admin_notices' which is above the page title so not optimal.
Anywhere either below the title, below the post status buttons or even under the bulk action / filters will do.
Is this possible? If so what hook am I looking at?.
Image link below. Area highlighted in red is what I'm trying to achieve.
http://indi-media.com/stackoverflow/Example.jpg
Thanks Guys.
Answer
Solution:
Turns out it probalby isnt possible without a hacky jquery approach or extending the wp table class which I'm not keen on doing. The only real way to do it is to construct the page and tables etc yourself.
Thanks for the pointers anyway guys.