Yoast\WP\SEO\Presenters\Twitter
Image_Presenter{} Yoast 1.0
Presenter class for the Twitter image.
Хуки из класса
Возвращает
Null. Ничего.
Использование
$Image_Presenter = new Image_Presenter(); // use class methods
Методы
- ERROR: no method name found on line ``
- get()
- ERROR: no method name found on line ``
- ERROR: no method name found on line ` *`
Код Image_Presenter{} Image Presenter{} Yoast 15.6.2
class Image_Presenter extends Abstract_Indexable_Tag_Presenter {
/**
* The tag format including placeholders.
*
* @var string
*/
protected $tag_format = '<meta name="twitter:image" content="%s" />';
/**
* The method of escaping to use.
*
* @var string
*/
protected $escaping = 'attribute';
/**
* Run the Twitter image value through the `wpseo_twitter_image` filter.
*
* @return string The filtered Twitter image.
*/
public function get() {
/**
* Filter: 'wpseo_twitter_image' - Allow changing the Twitter Card image.
*
* @param Indexable_Presentation $presentation The presentation of an indexable.
*
* @api string $twitter_image Image URL string.
*/
return (string) \apply_filters( 'wpseo_twitter_image', $this->presentation->twitter_image, $this->presentation );
}
}