Displays the message when there are no items to list.
Source
public function no_items() {
if ( $this->has_items ) {
_e( 'No themes found.' );
} else {
_e( 'No themes are currently available.' );
}
}
Displays the message when there are no items to list.
public function no_items() {
if ( $this->has_items ) {
_e( 'No themes found.' );
} else {
_e( 'No themes are currently available.' );
}
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.