Displays the bulk actions dropdown.
Parameters
$whichstringoptional- The location of the bulk actions: Either
'top'or'bottom'.
This is designated as optional for backward compatibility.Default:
''
Source
public function bulk_actions( $which = '' ) {
global $status;
if ( in_array( $status, array( 'mustuse', 'dropins' ), true ) ) {
return;
}
parent::bulk_actions( $which );
}
Changelog
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.