📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 09:04:33
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
models
📍 /home/supecsoq/public_html/domains/migalexpark.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 */ protected $indexable = null; /** * Returns the indexable this extension belongs to. * * @return Indexable The indexable. */ public function indexable() { if ( $this->indexable === null ) { $this->indexable = $this->belongs_to( 'Indexable', 'indexable_id', 'id' )->find_one(); } return $this->indexable; } }
💾 Save Changes
❌ Cancel