Sindbad~EG File Manager

Current Path : /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/3/classes/compatibility/
Upload File :
Current File : /var/www/html/ch.sumar.com.py/wp-content/plugins/peepso/3/classes/compatibility/yoast_seo.php

<?php

class PeepSo3_Compatibility_Yoast_SEO {
    private static $instance;

    public static function get_instance() {
        return isset(self::$instance) ? self::$instance : self::$instance = new self;
    }

    private function __construct()
    {
        // Unhook Yoast SEO Open Graph on pages with PeepSo shortcodes
        add_action('wp_head', function() {
            global $post;
            if($post instanceof WP_Post && stristr($post->post_content, '[peepso_')) {
                add_filter( 'wpseo_opengraph_url' , '__return_false' );
                add_filter( 'wpseo_opengraph_desc', '__return_false' );
                add_filter( 'wpseo_opengraph_title', '__return_false' );
                add_filter( 'wpseo_opengraph_type', '__return_false' );
                add_filter( 'wpseo_opengraph_site_name', '__return_false' );
                add_filter( 'wpseo_opengraph_image' , '__return_false' );
                add_filter( 'wpseo_og_locale' , '__return_false' );
                add_filter( 'wpseo_opengraph_author_facebook' , '__return_false' );
            }
        },1);

        add_action('wp', function() {
            if (defined('WPSEO_VERSION')) {
                global $post;
                if ($post instanceof WP_Post && stristr($post->post_content, '[peepso_')) {
                    if ($post->post_content == '[peepso_groups]') {
                        // force remove filter from Yoast\WP\SEO\Integrations\Front_End_Integration
                        $this->remove_filter('pre_get_document_title', 'Yoast\WP\SEO\Integrations\Front_End_Integration');
                    }

                    add_action('wpseo_head', function() use ($post) {
                        $GLOBALS['post'] = $post;
                    });
                    add_action('wp_head', '_wp_render_title_tag', -1);
                }

                if (PeepSo::get_option_new('use_name_everywhere') == 2) {
                    // force remove profile_update filter from Yoast\WP\SEO\Integrations\Watchers\Indexable_Author_Watcher
                    $this->remove_filter('profile_update', 'Yoast\WP\SEO\Integrations\Watchers\Indexable_Author_Watcher');
                }
            }
        });
    }

    private function remove_filter($filter, $class) {
        global $wp_filter;

        foreach ($wp_filter[$filter]->callbacks as $priority => $callback) {
            foreach ($callback as $key => $value) {
                if (is_array($value['function']) && is_object($obj = $value['function'][0]) && get_class($obj) == $class) {
                    unset($wp_filter[$filter]->callbacks[$priority][$key]);

                    if (empty($wp_filter[$filter]->callbacks[$priority])) {
                        unset($wp_filter[$filter]->callbacks[$priority]);
                    }
                }
            }
        }
    }
}

if(!defined('PEEPSO_DISABLE_COMPATIBILITY_YOAST_SEO')) {
   PeepSo3_Compatibility_Yoast_SEO::get_instance();
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists