PATH:
home
/
letacommog
/
lescompagnons
/
wp-content
/
plugins
/
wordpress-seo
/
deprecated
/
frontend
/
schema
<?php /** * WPSEO plugin file. * * @package WPSEO\Frontend\Schema */ /** * Returns a question object for each question in an FAQ block. * * @deprecated 14.0 * * @since 11.1 */ class WPSEO_Schema_FAQ_Questions { /** * A value object with context variables. * This property is public, because originally it was dynamically declared. * * @var WPSEO_Schema_Context */ public $context; /** * WPSEO_Schema_FAQ_Questions constructor. * * @codeCoverageIgnore * @deprecated 14.0 * * @param array $data Our schema graph. * @param WP_Block_Parser_Block $block The FAQ block of this type. * @param WPSEO_Schema_Context $context A value object with context variables. */ public function __construct( $data, $block, $context ) { _deprecated_function( __METHOD__, 'WPSEO 14.0' ); $this->context = $context; } /** * Find an image based on its URL and generate a Schema object for it. * * @codeCoverageIgnore * @deprecated 14.0 * * @return array The Schema with Questions added. */ public function generate() { _deprecated_function( __METHOD__, 'WPSEO 14.0' ); return []; } /** * Generate a Question piece. * * @codeCoverageIgnore * @deprecated 14.0 * * @param array $question The question to generate schema for. * * @return array Schema.org Question piece. */ protected function generate_question_block( $question ) { _deprecated_function( __METHOD__, 'WPSEO 14.0' ); return []; } }
[+]
..
[-] class-schema-author.php
[edit]
[-] class-schema-person.php
[edit]
[-] class-schema-main-image.php
[edit]
[-] class-schema-breadcrumb.php
[edit]
[-] interface-wpseo-graph-piece.php
[edit]
[-] class-schema-utils.php
[edit]
[-] class-schema-organization.php
[edit]
[-] class-schema-howto.php
[edit]
[-] class-schema-article.php
[edit]
[-] class-schema-ids.php
[edit]
[-] class-schema-image.php
[edit]
[-] class-schema-webpage.php
[edit]
[-] class-schema-faq-question-list.php
[edit]
[-] class-schema.php
[edit]
[-] class-schema-website.php
[edit]
[-] class-schema-faq-questions.php
[edit]
[-] class-schema-faq.php
[edit]