PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.2
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.2
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / wp-seo.php

wp-seo.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 28.2, at wp-seo.php

51 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Yoast SEO Plugin.
4 *
5 * @package WPSEO\Main
6 * @copyright Copyright (C) 2008-2024, Yoast BV - support@yoast.com
7 * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License, version 3 or higher
8 *
9 * @wordpress-plugin
10 * Plugin Name: Yoast SEO
11 * Version: 28.2
12 * Plugin URI: https://yoa.st/1uj
13 * Description: The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.
14 * Author: Team Yoast
15 * Author URI: https://yoa.st/1uk
16 * Text Domain: wordpress-seo
17 * Domain Path: /languages/
18 * License: GPL v3
19 * Requires at least: 6.8
20 * Requires PHP: 7.4
21 *
22 * WC requires at least: 7.1
23 * WC tested up to: 10.9
24 *
25 * This program is free software: you can redistribute it and/or modify
26 * it under the terms of the GNU General Public License as published by
27 * the Free Software Foundation, either version 3 of the License, or
28 * (at your option) any later version.
29 *
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
34 *
35 * You should have received a copy of the GNU General Public License
36 * along with this program. If not, see <http://www.gnu.org/licenses/>.
37 */
38
39 if ( ! function_exists( 'add_filter' ) ) {
40 header( 'Status: 403 Forbidden' );
41 header( 'HTTP/1.1 403 Forbidden' );
42 exit();
43 }
44
45 if ( ! defined( 'WPSEO_FILE' ) ) {
46 define( 'WPSEO_FILE', __FILE__ );
47 }
48
49 // Load the Yoast SEO plugin.
50 require_once dirname( WPSEO_FILE ) . '/wp-seo-main.php';
51