wp-seo.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * Yoast SEO Plugin.
  4. *
  5. * @package WPSEO\Main
  6. * @copyright Copyright (C) 2008-2019, 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: 12.7.1
  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. *
  20. * WC requires at least: 3.0
  21. * WC tested up to: 3.8
  22. *
  23. * This program is free software: you can redistribute it and/or modify
  24. * it under the terms of the GNU General Public License as published by
  25. * the Free Software Foundation, either version 3 of the License, or
  26. * (at your option) any later version.
  27. *
  28. * This program is distributed in the hope that it will be useful,
  29. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  31. * GNU General Public License for more details.
  32. *
  33. * You should have received a copy of the GNU General Public License
  34. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  35. */
  36. if ( ! function_exists( 'add_filter' ) ) {
  37. header( 'Status: 403 Forbidden' );
  38. header( 'HTTP/1.1 403 Forbidden' );
  39. exit();
  40. }
  41. if ( ! defined( 'WPSEO_FILE' ) ) {
  42. define( 'WPSEO_FILE', __FILE__ );
  43. }
  44. // Load the Yoast SEO plugin.
  45. require_once dirname( WPSEO_FILE ) . '/wp-seo-main.php';