🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 06:55:33 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
reenrihair.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
presenters
/
open-graph
📍 /home/therahul/reenrihair.com/wp-content/plugins/wordpress-seo/src/presenters/open-graph
🔄 Refresh
✏️
Editing: article-publisher-presenter.php
Writable
<?php namespace Yoast\WP\SEO\Presenters\Open_Graph; use Yoast\WP\SEO\Presentations\Indexable_Presentation; use Yoast\WP\SEO\Presenters\Abstract_Indexable_Tag_Presenter; /** * Presenter class for the Open Graph article publisher. */ class Article_Publisher_Presenter extends Abstract_Indexable_Tag_Presenter { /** * The tag key name. * * @var string */ protected $key = 'article:publisher'; /** * The tag format including placeholders. * * @var string */ protected $tag_format = self::META_PROPERTY_CONTENT; /** * Run the article publisher's Facebook URL through the `wpseo_og_article_publisher` filter. * * @return string The filtered article publisher's Facebook URL. */ public function get() { /** * Filter: 'wpseo_og_article_publisher' - Allow developers to filter the article publisher's Facebook URL. * * @param bool|string $article_publisher The article publisher's Facebook URL, return false to disable. * @param Indexable_Presentation $presentation The presentation of an indexable. */ return \trim( \apply_filters( 'wpseo_og_article_publisher', $this->presentation->open_graph_article_publisher, $this->presentation ) ); } }
💾 Save Changes
❌ Cancel