1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24:
<?php
/**
* Class for disabling Yoast SEO on wp-call-to-action post type
* @package CTA
* @subpackage YOAST
*/
if ( !class_exists('CTA_WordPress_SEO') ) {
class CTA_WordPress_SEO {
function __construct() {
/* Remove SEO Page Analysis from wp-call-to-action post type */
if ( (isset($_GET['post_type']) && ($_GET['post_type'] == 'wp-call-to-action') ) ) {
add_filter( 'wpseo_use_page_analysis', '__return_false' );
}
}
}
/* Load Post Type Pre Init */
new CTA_WordPress_SEO();
}