IMDB ID
-
This code takes imdb movie id from custom field and uses it to print runtime.
$imdbid = get_post_meta(get_the_ID(),'imdb-id',true); $connector_movie = get_imdb_connector_movie($imdbid); $minutes = $connector_movie["runtime"]; $minutes = preg_replace("'[^0-9]'", "", $minutes); $new_time = date("G:i:00", mktime(0, $minutes)); echo "Runtime: " . $new_time;
This code works great, but when I choose an option to store movie cache in WordPress MySQL database it stops working and gives this message:
The movie tt2978462 could not be found. Please check your spelling.
What could be the problem?BTW, thanks for an option not to cache posters!:)
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘IMDB ID’ is closed to new replies.