/**
  * Class Constructor
  *
  * Sets the name of the meta field, the user ID and the read posts
  *
  * @author Daniel Pataki
  * @since 1.0.0
  *
  */
 function __construct()
 {
     parent::__construct();
     $this->set_meta_field();
     $this->set_user_id();
     $this->set_read_posts();
 }
 /**
  * Class Constructor
  *
  * Sets the name of the cookie and the read posts
  *
  * @author Daniel Pataki
  * @since 1.0.0
  *
  */
 function __construct()
 {
     parent::__construct();
     $this->set_cookie_name();
     $this->set_read_posts();
 }