init_json_filters(). */ public function __construct( &$plugin ) { $this->p =& $plugin; if ( $this->p->debug->enabled ) { $this->p->debug->mark(); } $this->p->util->add_plugin_filters( $this, array( 'json_data_https_schema_org_article' => 5, ) ); } /* * See https://developers.google.com/search/docs/appearance/structured-data/article. */ public function filter_json_data_https_schema_org_article( $json_data, $mod, $mt_og, $page_type_id, $is_main ) { if ( $this->p->debug->enabled ) { $this->p->debug->mark(); } $json_ret = array(); /* * See https://schema.org/articleSection. */ WpssoSchema::add_data_itemprop_from_assoc( $json_ret, $mt_og, array( 'articleSection' => 'article:section', ) ); if ( ! empty( $mt_og[ 'article:reading_mins' ] ) ) { $json_ret[ 'timeRequired' ] = 'PT' . $mt_og[ 'article:reading_mins' ] . 'M'; } /* * See https://schema.org/articleBody. */ if ( ! empty( $this->p->options[ 'schema_def_add_articlebody_prop' ] ) ) { /* * The CreativeWork 'text' property may be empty if 'schema_def_add_text_prop' is unchecked. */ if ( empty( $json_data[ 'text' ] ) ) { $json_ret[ 'articleBody' ] = $this->p->page->get_text( $mod, $md_key = 'schema_text', $max_len = 'schema_text' ); } else $json_ret[ 'articleBody' ] = $json_data[ 'text' ]; } unset( $json_data[ 'text' ] ); // Prefer the articleBody property. /* * See https://schema.org/speakable. */ if ( ! empty( $this->p->options[ 'plugin_speakable_css_csv' ] ) ) { $speakable_css_selector = SucomUtil::explode_csv( $this->p->options[ 'plugin_speakable_css_csv' ] ); if ( ! empty( $speakable_css_selector ) ) { $json_ret[ 'speakable' ] = WpssoSchema::get_schema_type_context( 'https://schema.org/SpeakableSpecification', array( 'cssSelector' => $speakable_css_selector, ) ); } } if ( $this->p->debug->enabled ) { $this->p->debug->log( 'merging json_data and json_ret arrays' ); } return WpssoSchema::return_data_from_filter( $json_data, $json_ret, $is_main ); } } }