Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ArdiArtani

    (@ardiartani)

    i solved the imdb and tmdb problem, now only the other one 🙂

    Try adding this to your theme’s functions.php file and import a new movie to test:

    function remove_plotgenres( $meta ) {
    
    	$meta['genres']   = array();
    	$meta['overview'] = null;
    
    	return $meta;
    }
    add_filter( 'wpmoly_filter_meta_data', 'remove_plotgenres', 9 );
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Stop fetching Plot and Genres??’ is closed to new replies.