HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/flbestac/public_html/wp-content/plugins/wp-seopress/src/Helpers/ContentAnalysis.php
<?php

namespace SEOPress\Helpers;

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

abstract class ContentAnalysis {
    public static function getData() {
        $data = [
            'all_canonical'=> [
                'title'  => __('Canonical URL', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'schemas'=> [
                'title'  => __('Structured data types', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'old_post'=> [
                'title'  => __('Last modified date', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'keywords_permalink'=> [
                'title'  => __('Keywords in permalink', 'wp-seopress'),
                'impact' => null,
                'desc'   => null,
            ],
            'headings'=> [
                'title'  => __('Headings', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'meta_title'=> [
                'title'  => __('Meta title', 'wp-seopress'),
                'impact' => null,
                'desc'   => null,
            ],
            'meta_desc'=> [
                'title'  => __('Meta description', 'wp-seopress'),
                'impact' => null,
                'desc'   => null,
            ],
            'social'=> [
                'title'  => __('Social meta tags', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'robots'=> [
                'title'  => __('Meta robots', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'img_alt'=> [
                'title'  => __('Alternative texts of images', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'nofollow_links'=> [
                'title'  => __('NoFollow Links', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'outbound_links'=> [
                'title'  => __('Outbound Links', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
            'internal_links'=> [
                'title'  => __('Internal Links', 'wp-seopress'),
                'impact' => 'good',
                'desc'   => null,
            ],
        ];

        return apply_filters('seopress_get_content_analysis_data', $data);
    }
}