| 1 |
<?php |
| 2 |
/** |
| 3 |
* Yoast SEO Plugin. |
| 4 |
* |
| 5 |
* @package WPSEO\Main |
| 6 |
* @copyright Copyright (C) 2008-2022, 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: 18.3 |
| 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: 5.6 |
| 20 |
* Requires PHP: 5.6.20 |
| 21 |
* |
| 22 |
* WC requires at least: 3.0 |
| 23 |
* WC tested up to: 6.1 |
| 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 |
|