public static function add_noti_views_per_hundred($post_id)
 {
     if (!class_exists('theme_notification')) {
         return;
     }
     $post = theme_cache::get_post($post_id);
     if (!$post) {
         return false;
     }
     $meta = ['type' => self::$type_key, 'timestamp' => self::get_timestamp(), 'post-id' => $post->ID, 'views' => self::get_views($post_id), 'points' => theme_custom_point::get_point_value(self::$type_key)];
     theme_notification::add_noti($post->post_author, $meta);
 }