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 / config / schema-ids.php

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

65 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Yoast\WP\SEO\Config;
4
5 /**
6 * Class Schema_IDs.
7 */
8 class Schema_IDs {
9
10 /**
11 * Hash used for the Author `@id`.
12 */
13 const AUTHOR_HASH = '#author';
14
15 /**
16 * Hash used for the Author Logo's `@id`.
17 */
18 const AUTHOR_LOGO_HASH = '#authorlogo';
19
20 /**
21 * Hash used for the Breadcrumb's `@id`.
22 */
23 const BREADCRUMB_HASH = '#breadcrumb';
24
25 /**
26 * Hash used for the Person `@id`.
27 */
28 const PERSON_HASH = '#/schema/person/';
29
30 /**
31 * Hash used for the Article `@id`.
32 */
33 const ARTICLE_HASH = '#article';
34
35 /**
36 * Hash used for the Organization `@id`.
37 */
38 const ORGANIZATION_HASH = '#organization';
39
40 /**
41 * Hash used for the Organization `@id`.
42 */
43 const ORGANIZATION_LOGO_HASH = '#/schema/logo/image/';
44
45 /**
46 * Hash used for the logo `@id`.
47 */
48 const PERSON_LOGO_HASH = '#/schema/person/image/';
49
50 /**
51 * Hash used for an Article's primary image `@id`.
52 */
53 const PRIMARY_IMAGE_HASH = '#primaryimage';
54
55 /**
56 * Hash used for the WebPage's `@id`.
57 */
58 const WEBPAGE_HASH = '#webpage';
59
60 /**
61 * Hash used for the Website's `@id`.
62 */
63 const WEBSITE_HASH = '#website';
64 }
65