BP_Messages_Box_Template::has_threads()
Whether there are threads available in the loop.
Description Description
See also See also
Return Return
(bool) True if there are items in the loop, otherwise false.
Source Source
File: bp-messages/classes/class-bp-messages-box-template.php
public function has_threads() {
if ( $this->thread_count ) {
return true;
}
return false;
}