/**
  * Load the Movie Images and display a jsonified result.s
  * 
  * @since    1.0
  * 
  * @param    int      $tmdb_id Movie TMDb ID to fetch images
  * @param    array    $post Related Movie Post
  * 
  * @return   array    Movie posters
  */
 public static function load_movie_posters($tmdb_id, $post)
 {
     $posters = WPMOLY_TMDb::get_movie_posters($tmdb_id);
     $posters = apply_filters('wpmoly_jsonify_movie_images', $posters, $post, 'poster');
     return $posters;
 }