123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Frontend\Schema
- */
- /**
- * Returns schema Article data.
- *
- * @since 10.2
- */
- class WPSEO_Schema_Article implements WPSEO_Graph_Piece {
- /**
- * The date helper.
- *
- * @var WPSEO_Date_Helper
- */
- protected $date;
- /**
- * A value object with context variables.
- *
- * @var WPSEO_Schema_Context
- */
- private $context;
- /**
- * WPSEO_Schema_Article constructor.
- *
- * @param WPSEO_Schema_Context $context A value object with context variables.
- */
- public function __construct( WPSEO_Schema_Context $context ) {
- $this->context = $context;
- $this->date = new WPSEO_Date_Helper();
- }
- /**
- * Determines whether or not a piece should be added to the graph.
- *
- * @return bool
- */
- public function is_needed() {
- if ( ! is_singular() ) {
- return false;
- }
- if ( $this->context->site_represents === false ) {
- return false;
- }
- return self::is_article_post_type( get_post_type() );
- }
- /**
- * Returns Article data.
- *
- * @return array $data Article data.
- */
- public function generate() {
- $post = get_post( $this->context->id );
- $comment_count = get_comment_count( $this->context->id );
- $data = [
- '@type' => 'Article',
- '@id' => $this->context->canonical . WPSEO_Schema_IDs::ARTICLE_HASH,
- 'isPartOf' => [ '@id' => $this->context->canonical . WPSEO_Schema_IDs::WEBPAGE_HASH ],
- 'author' => [ '@id' => WPSEO_Schema_Utils::get_user_schema_id( $post->post_author, $this->context ) ],
- 'headline' => get_the_title(),
- 'datePublished' => $this->date->format( $post->post_date_gmt ),
- 'dateModified' => $this->date->format( $post->post_modified_gmt ),
- 'commentCount' => $comment_count['approved'],
- 'mainEntityOfPage' => [ '@id' => $this->context->canonical . WPSEO_Schema_IDs::WEBPAGE_HASH ],
- ];
- 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 );
- return $data;
- }
- /**
- * Determines whether a given post type should have Article schema.
- *
- * @param string $post_type Post type to check.
- *
- * @return bool True if it has article schema, false if not.
- */
- public static function is_article_post_type( $post_type = null ) {
- if ( is_null( $post_type ) ) {
- $post_type = get_post_type();
- }
- /**
- * Filter: 'wpseo_schema_article_post_types' - Allow changing for which post types we output Article schema.
- *
- * @api string[] $post_types The post types for which we output Article.
- */
- $post_types = apply_filters( 'wpseo_schema_article_post_types', [ 'post' ] );
- return in_array( $post_type, $post_types );
- }
- /**
- * 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.
- */
- private function add_terms( $data, $key, $taxonomy ) {
- $terms = get_the_terms( $this->context->id, $taxonomy );
- if ( is_array( $terms ) ) {
- $keywords = [];
- foreach ( $terms as $term ) {
- // We are checking against the WordPress internal translation.
- // @codingStandardsIgnoreLine
- if ( $term->name !== __( 'Uncategorized', 'default' ) ) {
- $keywords[] = $term->name;
- }
- }
- $data[ $key ] = implode( ',', $keywords );
- }
- 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 . WPSEO_Schema_IDs::PRIMARY_IMAGE_HASH,
- ];
- }
- return $data;
- }
- }
|