PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 19.0
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v19.0
28.5 28.4 28.3 28.2 28.1 28.0 27.9 27.8 27.7 27.6 27.5 trunk 18.0 18.1 18.2 18.3 18.4 18.4.1 18.5 18.5.1 18.6 18.7 18.8 18.9 19.0 All 129 releases
wordpress-seo / src / deprecated / frontend / schema / class-schema.php

class-schema.php in Yoast SEO – Advanced SEO with real-time guidance and built-in AI 19.0, at src/deprecated/frontend/schema/class-schema.php

53 lines 934 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * WPSEO plugin file.
4 *
5 * @package WPSEO\Frontend\Schema
6 */
7
8 /**
9 * Class WPSEO_Schema
10 *
11 * Outputs schema code specific for Google's JSON LD stuff.
12 *
13 * @since 1.8
14 * @deprecated 14.0
15 */
16 class WPSEO_Schema implements WPSEO_WordPress_Integration {
17
18 /**
19 * Registers the hooks.
20 *
21 * @deprecated 14.0
22 * @codeCoverageIgnore
23 */
24 public function register_hooks() {
25 _deprecated_function( __METHOD__, 'WPSEO 14.0' );
26 }
27
28 /**
29 * JSON LD output function that the functions for specific code can hook into.
30 *
31 * @deprecated 14.0
32 * @codeCoverageIgnore
33 *
34 * @since 1.8
35 */
36 public function json_ld() {
37 _deprecated_function( __METHOD__, 'WPSEO 14.0' );
38 }
39
40 /**
41 * Outputs the JSON LD code in a valid JSON+LD wrapper.
42 *
43 * @since 10.2
44 * @deprecated 14.0
45 * @codeCoverageIgnore
46 *
47 * @return void
48 */
49 public function generate() {
50 _deprecated_function( __METHOD__, 'WPSEO 14.0' );
51 }
52 }
53