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:
parent
0aaa2900eb
commit
b37bb95aad
|
@ -485,6 +485,15 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?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 );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue