Make WordPress Core


Ignore:
Timestamp:
10/18/2015 02:55:52 PM (9 years ago)
Author:
DrewAPicture
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-posts-list-table.php

    r35241 r35263  
    486486        </div>
    487487<?php
     488        /**
     489         * Fires immediately following the closing "actions" div in the tablenav for the posts
     490         * list table.
     491         *
     492         * @since 4.4.0
     493         *
     494         * @param string $which The location of the extra table nav markup: 'top' or 'bottom'.
     495         */
     496        do_action( 'manage_posts_extra_tablenav', $which );
    488497    }
    489498
Note: See TracChangeset for help on using the changeset viewer.