📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 20:57:33
📂
/ (Root)
/
home
/
apkbfjox
/
shamapk.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
editors
/
framework
/
seo
/
posts
📍 /home/apkbfjox/shamapk.com/wp-content/plugins/wordpress-seo/src/editors/framework/seo/posts
🔄 Refresh
✏️
Editing: abstract-post-seo-data-provider.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded namespace Yoast\WP\SEO\Editors\Framework\Seo\Posts; use WP_Post; use Yoast\WP\SEO\Editors\Domain\Seo\Seo_Plugin_Data_Interface; /** * Abstract class for all post data providers. */ abstract class Abstract_Post_Seo_Data_Provider { /** * Holds the WordPress Post. * * @var WP_Post */ protected $post; /** * The post. * * @param WP_Post $post The post. * * @return void */ public function set_post( WP_Post $post ): void { $this->post = $post; } /** * Method to return the compiled SEO data. * * @return Seo_Plugin_Data_Interface The specific seo data. */ abstract public function get_data(): Seo_Plugin_Data_Interface; }
💾 Save Changes
❌ Cancel