HEX
Server: Apache
System: Linux host.fiblib.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
User: agritoday (1002)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: /home/agritoday/www/wp-content/plugins-x/wordpress-seo/deprecated/class-cornerstone.php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

/**
 * Represents the yoast cornerstone content.
 *
 * @deprecated 8.4
 */
class WPSEO_Cornerstone {

	/**
	 * Holds the cornerstone meta name.
	 *
	 * @var string
	 */
	const META_NAME = 'is_cornerstone';

	/**
	 * Holds the cornerstone field name.
	 *
	 * @var string
	 */
	const FIELD_NAME = 'yoast_wpseo_is_cornerstone';

	/**
	 * WPSEO_Cornerstone constructor.
	 *
	 * @deprecated 8.4
	 */
	public function __construct() {
		_deprecated_function( __METHOD__, '8.4' );
	}

	/**
	 * Registers the hooks.
	 *
	 * @deprecated 8.4
	 *
	 * @return void
	 */
	public function register_hooks() {
		_deprecated_function( 'WPSEO_Cornerstone::register_hooks', '8.4' );
	}

	/**
	 * Saves the meta value to the database.
	 *
	 * @deprecated 8.4
	 *
	 * @param int $post_id The post id to save the meta value for.
	 *
	 * @return void
	 */
	public function save_meta_value( $post_id ) {
		_deprecated_function( 'WPSEO_Cornerstone::save_meta_value', '8.4' );
	}
}