Exemplo n.º 1
0
 /**
  * @return WP_User[]
  */
 public function getAuthors()
 {
     if (!$this->_cache->containsKey('authors')) {
         $authors = $this->_wpFunctions->get_users(array('who' => 'author'));
         $this->_cache->put('authors', $authors);
     }
     return $this->_cache->get('authors');
 }