コード例 #1
0
ファイル: class-builder.php プロジェクト: norcross/apple-news
 /**
  * Gets the content title.
  *
  * @access protected
  * @return string
  */
 protected function content_title()
 {
     return $this->content->title() ?: __('Untitled Article', 'apple-news');
 }
コード例 #2
0
 /**
  * Get the content title.
  *
  * @return string
  * @access private
  */
 private function content_title()
 {
     return $this->content->title() ?: 'Untitled Article';
 }