Parameters
$which
stringoptionalDefault:
''
Source
public function bulk_actions( $which = '' ) {
global $status;
if ( in_array( $status, array( 'mustuse', 'dropins' ), true ) ) {
return;
}
parent::bulk_actions( $which );
}
CARVIEW |
$which
stringoptionalDefault:''
public function bulk_actions( $which = '' ) {
global $status;
if ( in_array( $status, array( 'mustuse', 'dropins' ), true ) ) {
return;
}
parent::bulk_actions( $which );
}
Uses | Description |
---|---|
WP_List_Table::bulk_actions()wp-admin/includes/class-wp-list-table.php | Displays the bulk actions dropdown. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.