Administration: Introduce the manage_posts_extra_tablenav action, which fires inside the tablenav for the posts list table, and just outside the "actions" container.

Props hlashbrooke, wonderboymusic.
Fixes #30341.

Built from https://develop.svn.wordpress.org/trunk@35263


git-svn-id: http://core.svn.wordpress.org/trunk@35229 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-10-18 14:56:23 +00:00
parent 0aaa2900eb
commit b37bb95aad
2 changed files with 10 additions and 1 deletions

View File

@ -485,6 +485,15 @@ class WP_Posts_List_Table extends WP_List_Table {
?>
</div>
<?php
/**
* Fires immediately following the closing "actions" div in the tablenav for the posts
* list table.
*
* @since 4.4.0
*
* @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
*/
do_action( 'manage_posts_extra_tablenav', $which );
}
/**

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-35262';
$wp_version = '4.4-alpha-35263';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.