HEX
Server: Apache
System: Linux webm014.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: circuix (152771)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/circuix/adrRc/wp-content/plugins/wp-seopress/src/Services/WordPressData.php
<?php

namespace SEOPress\Services;

if ( ! defined('ABSPATH')) {
    exit;
}

class WordPressData
{
    public function getPostTypes( $return_all = false, $args = array() ) {
        global $wp_post_types;

        $default_args = [
            'show_ui' => true,
            'public'  => true,
        ];

        $args = wp_parse_args( $args, $default_args );

        if ( '' === $args['public'] ) {
            unset( $args['public'] );
        }

        $post_types = get_post_types($args, 'objects', 'and');

        if ( ! $return_all ) {
            unset(
                $post_types['attachment'],
                $post_types['seopress_rankings'],
                $post_types['seopress_backlinks'],
                $post_types['seopress_404'],
                $post_types['elementor_library'],
                $post_types['customer_discount'],
                $post_types['cuar_private_file'],
                $post_types['cuar_private_page'],
                $post_types['ct_template']
            );
        }

        $post_types = apply_filters( 'seopress_post_types', $post_types, $return_all, $args );

        return $post_types;
    }

    public function getTaxonomies($with_terms = false, $return_all = false) {
        $args = [
            'show_ui' => true,
            'public'  => true,
        ];
        $args = apply_filters('seopress_get_taxonomies_args', $args);

        $output     = 'objects'; // or objects
        $operator   = 'and'; // 'and' or 'or'
        $taxonomies = get_taxonomies($args, $output, $operator);

        if ( ! $return_all ) {
            unset(
                $taxonomies['seopress_bl_competitors']
            );
        }

        $taxonomies = apply_filters( 'seopress_get_taxonomies_list', $taxonomies, $return_all );

        if ( ! $with_terms) {
            return $taxonomies;
        }

        foreach ($taxonomies as $_tax_slug => &$_tax) {
            $_tax->terms = get_terms(['taxonomy' => $_tax_slug]);
        }

        return $taxonomies;
    }
}