- Timestamp:
- 07/30/2020 01:25:10 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r48670 r48693 391 391 $has_items = $this->has_items(); 392 392 } 393 393 394 echo '<div class="alignleft actions">'; 395 394 396 if ( 'top' === $which ) { 395 397 ob_start(); … … 416 418 submit_button( $title, 'apply', 'delete_all', false ); 417 419 } 420 418 421 /** 419 422 * Fires after the Filter submit button for comment types. 420 423 * 421 424 * @since 2.5.0 425 * @since 5.6.0 The `$which` parameter was added. 422 426 * 423 427 * @param string $comment_status The comment status name. Default 'All'. 428 * @param string $which The location of the extra table nav markup: 'top' or 'bottom'. 424 429 */ 425 do_action( 'manage_comments_nav', $comment_status ); 430 do_action( 'manage_comments_nav', $comment_status, $which ); 431 426 432 echo '</div>'; 427 433 }
Note: See TracChangeset
for help on using the changeset viewer.