Exemple #1
0
 /**
  * Single blog page view
  *
  * @access public
  * @return void
  */
 public function single()
 {
     the_post();
     $post = get_post();
     $this->data["article"] = Article::find($post->ID);
     $this->render("blog/single", $this->data);
 }