PluginProbe
Yoast SEO – Advanced SEO with real-time guidance and built-in AI / 28.5
Yoast SEO – Advanced SEO with real-time guidance and built-in AI v28.5
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
← All changes | src/config/schema-ids.php +10 -15 18.228.5 View file →
@@ -9,56 +9,51 @@
9 9
10 10 /**
11 11 * Hash used for the Author `@id`.
12 12 */
13 - const AUTHOR_HASH = '#author';
13 + public const AUTHOR_HASH = '#author';
14 14
15 15 /**
16 16 * Hash used for the Author Logo's `@id`.
17 17 */
18 - const AUTHOR_LOGO_HASH = '#authorlogo';
18 + public const AUTHOR_LOGO_HASH = '#authorlogo';
19 19
20 20 /**
21 21 * Hash used for the Breadcrumb's `@id`.
22 22 */
23 - const BREADCRUMB_HASH = '#breadcrumb';
23 + public const BREADCRUMB_HASH = '#breadcrumb';
24 24
25 25 /**
26 26 * Hash used for the Person `@id`.
27 27 */
28 - const PERSON_HASH = '#/schema/person/';
28 + public const PERSON_HASH = '#/schema/person/';
29 29
30 30 /**
31 31 * Hash used for the Article `@id`.
32 32 */
33 - const ARTICLE_HASH = '#article';
33 + public const ARTICLE_HASH = '#article';
34 34
35 35 /**
36 36 * Hash used for the Organization `@id`.
37 37 */
38 - const ORGANIZATION_HASH = '#organization';
38 + public const ORGANIZATION_HASH = '#organization';
39 39
40 40 /**
41 41 * Hash used for the Organization `@id`.
42 42 */
43 - const ORGANIZATION_LOGO_HASH = '#logo';
43 + public const ORGANIZATION_LOGO_HASH = '#/schema/logo/image/';
44 44
45 45 /**
46 46 * Hash used for the logo `@id`.
47 47 */
48 - const PERSON_LOGO_HASH = '#personlogo';
48 + public const PERSON_LOGO_HASH = '#/schema/person/image/';
49 49
50 50 /**
51 51 * Hash used for an Article's primary image `@id`.
52 52 */
53 - const PRIMARY_IMAGE_HASH = '#primaryimage';
53 + public const PRIMARY_IMAGE_HASH = '#primaryimage';
54 54
55 55 /**
56 - * Hash used for the WebPage's `@id`.
57 - */
58 - const WEBPAGE_HASH = '#webpage';
59 -
60 - /**
61 56 * Hash used for the Website's `@id`.
62 57 */
63 - const WEBSITE_HASH = '#website';
58 + public const WEBSITE_HASH = '#website';
64 59 }