C:\xampp\htdocs\landing\wp-content\plugins\wordpress-seo\src\generators\schema\article.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php

namespace Yoast\WP\SEO\Generators\Schema;

use 
Yoast\WP\SEO\Config\Schema_IDs;

/**
 * Returns schema Article data.
 */
class Article extends Abstract_Schema_Piece {

    
/**
     * Determines whether or not a piece should be added to the graph.
     *
     * @return bool
     */
    
public function is_needed() {
        if ( 
$this->context->indexable->object_type !== 'post' ) {
            return 
false;
        }

        
// If we cannot output a publisher, we shouldn't output an Article.
        
if ( $this->context->site_represents === false ) {
            return 
false;
        }

        
// If we cannot output an author, we shouldn't output an Article.
        
if ( ! $this->helpers->schema->article->is_author_supported$this->context->indexable->object_sub_type ) ) {
            return 
false;
        }

        if ( 
$this->context->schema_article_type !== 'None' ) {
            
$this->context->main_schema_id $this->context->canonical Schema_IDs::ARTICLE_HASH;

            return 
true;
        }

        return 
false;
    }

    
/**
     * Returns Article data.
     *
     * @return array $data Article data.
     */
    
public function generate() {
        
$data = [
            
'@type'            => $this->context->schema_article_type,
            
'@id'              => $this->context->canonical Schema_IDs::ARTICLE_HASH,
            
'isPartOf'         => [ '@id' => $this->context->canonical Schema_IDs::WEBPAGE_HASH ],
            
'author'           => [ '@id' => $this->helpers->schema->id->get_user_schema_id$this->context->post->post_author$this->context ) ],
            
'headline'         => $this->helpers->schema->html->smart_strip_tags$this->helpers->post->get_post_title_with_fallback$this->context->id ) ),
            
'datePublished'    => $this->helpers->date->format$this->context->post->post_date_gmt ),
            
'dateModified'     => $this->helpers->date->format$this->context->post->post_modified_gmt ),
            
'mainEntityOfPage' => [ '@id' => $this->context->canonical Schema_IDs::WEBPAGE_HASH ],
        ];

        
// If the comments are open -or- there are comments approved, show the count.
        
$comments_open = \comments_open$this->context->id );
        
$comment_count = \get_comment_count$this->context->id );
        if ( 
$comments_open || $comment_count['approved'] > ) {
            
$data['commentCount'] = $comment_count['approved'];
        }

        if ( 
$this->context->site_represents_reference ) {
            
$data['publisher'] = $this->context->site_represents_reference;
        }

        
$data $this->add_image$data );
        
$data $this->add_keywords$data );
        
$data $this->add_sections$data );
        
$data $this->helpers->schema->language->add_piece_language$data );

        if ( \
post_type_supports$this->context->post->post_type'comments' ) && $this->context->post->comment_status === 'open' ) {
            
$data $this->add_potential_action$data );
        }

        return 
$data;
    }

    
/**
     * Adds tags as keywords, if tags are assigned.
     *
     * @param array $data Article data.
     *
     * @return array $data Article data.
     */
    
private function add_keywords$data ) {
        
/**
         * Filter: 'wpseo_schema_article_keywords_taxonomy' - Allow changing the taxonomy used to assign keywords to a post type Article data.
         *
         * @api string $taxonomy The chosen taxonomy.
         */
        
$taxonomy = \apply_filters'wpseo_schema_article_keywords_taxonomy''post_tag' );

        return 
$this->add_terms$data'keywords'$taxonomy );
    }

    
/**
     * Adds categories as sections, if categories are assigned.
     *
     * @param array $data Article data.
     *
     * @return array $data Article data.
     */
    
private function add_sections$data ) {
        
/**
         * Filter: 'wpseo_schema_article_sections_taxonomy' - Allow changing the taxonomy used to assign keywords to a post type Article data.
         *
         * @api string $taxonomy The chosen taxonomy.
         */
        
$taxonomy = \apply_filters'wpseo_schema_article_sections_taxonomy''category' );

        return 
$this->add_terms$data'articleSection'$taxonomy );
    }

    
/**
     * Adds a term or multiple terms, comma separated, to a field.
     *
     * @param array  $data     Article data.
     * @param string $key      The key in data to save the terms in.
     * @param string $taxonomy The taxonomy to retrieve the terms from.
     *
     * @return mixed array $data Article data.
     */
    
protected function add_terms$data$key$taxonomy ) {
        
$terms = \get_the_terms$this->context->id$taxonomy );

        if ( ! \
is_array$terms ) ) {
            return 
$data;
        }

        
$callback = function( $term ) {
            
// We are using the WordPress internal translation.
            
return $term->name !== \__'Uncategorized''default' );
        };
        
$terms    = \array_filter$terms$callback );

        if ( empty( 
$terms ) ) {
            return 
$data;
        }

        
$data$key ] = \implode',', \wp_list_pluck$terms'name' ) );

        return 
$data;
    }

    
/**
     * Adds an image node if the post has a featured image.
     *
     * @param array $data The Article data.
     *
     * @return array $data The Article data.
     */
    
private function add_image$data ) {
        if ( 
$this->context->has_image ) {
            
$data['image'] = [
                
'@id' => $this->context->canonical Schema_IDs::PRIMARY_IMAGE_HASH,
            ];
        }

        return 
$data;
    }

    
/**
     * Adds the potential action property to the Article Schema piece.
     *
     * @param array $data The Article data.
     *
     * @return array $data The Article data with the potential action added.
     */
    
private function add_potential_action$data ) {
        
/**
         * Filter: 'wpseo_schema_article_potential_action_target' - Allows filtering of the schema Article potentialAction target.
         *
         * @api array $targets The URLs for the Article potentialAction target.
         */
        
$targets = \apply_filters'wpseo_schema_article_potential_action_target', [ $this->context->canonical '#respond' ] );

        
$data['potentialAction'][] = [
            
'@type'  => 'CommentAction',
            
'name'   => 'Comment',
            
'target' => $targets,
        ];

        return 
$data;
    }
}
x

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