@tacoverdo: Look at line 1886 in inc/class-frontend.php
The real solution is to change from
$this->options[‘noodp’] === false
to
$this->options[‘noodp’] === true
and the final code will be
private function add_robot_content_noodp( $description ) {
if ( ! ( empty( $description ) ) && $this->options[‘noodp’] === true ) {
$this->options[‘noodp’] = true;
}
}
In this way you can use “Force noodp meta robots tag sitewide” option into WP-ADMIN / Yoast plugin / Titles & Metas / Other tab to switch on or off the noodp content.