C:\xampp\htdocs\landing\wp-content\plugins\wordpress-seo\src\presenters\twitter\title-presenter.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

namespace Yoast\WP\SEO\Presenters\Twitter;

use 
Yoast\WP\SEO\Presentations\Indexable_Presentation;
use 
Yoast\WP\SEO\Presenters\Abstract_Indexable_Tag_Presenter;

/**
 * Presenter class for the Twitter title.
 */
class Title_Presenter extends Abstract_Indexable_Tag_Presenter {

    
/**
     * The tag format including placeholders.
     *
     * @var string
     */
    
protected $tag_format '<meta name="twitter:title" content="%s" />';

    
/**
     * Run the Twitter title through replace vars and the `wpseo_twitter_title` filter.
     *
     * @return string The filtered Twitter title.
     */
    
public function get() {
        
/**
         * Filter: 'wpseo_twitter_title' - Allow changing the Twitter title.
         *
         * @api string $twitter_title The Twitter title.
         *
         * @param Indexable_Presentation $presentation The presentation of an indexable.
         */
        
return \trim( \apply_filters'wpseo_twitter_title'$this->replace_vars$this->presentation->twitter_title ), $this->presentation ) );
    }
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586