__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Yoast SEO Compatibility File.
*
* @package Astra
*/
/**
* Astra Yoast SEO Compatibility
*
* @since 2.1.2
*/
class Astra_Yoast_SEO {
/**
* Constructor
*/
public function __construct() {
add_filter( 'wpseo_sitemap_exclude_post_type', array( $this, 'sitemap_exclude_post_type' ), 10, 2 );
}
/**
* Exclude One Content Type From Yoast SEO Sitemap
*
* @param string $value value.
* @param string $post_type Post Type.
* @since 2.1.2
*/
public function sitemap_exclude_post_type( $value, $post_type ) {
return 'astra-advanced-hook' === $post_type;
}
}
/**
* Kicking this off by object
*/
new Astra_Yoast_SEO();