-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMeta.php
More file actions
132 lines (112 loc) · 4.9 KB
/
Meta.php
File metadata and controls
132 lines (112 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
add_action( 'wp_loaded', 'wpse290170_wp_loaded' );
use GraphQL\Type\Definition\Type;
use GraphQL\Type\Definition\ObjectType;
function wpse290170_wp_loaded() {
$blog_id = get_current_blog_id();
$types = get_post_types( [
'public' => true ] );
foreach ( $types as $type ){
add_action( "graphql_" . $type . "_fields", function($fields) {
$fields['seo_title'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('SEO Title'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_title', true);
}
];
$fields['seo_metadesc'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('SEO Dscription'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_metadesc', true);
}
];
$fields['seo_noindex'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('No Index'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_meta-robots-noindex', true);
}
];
$fields['seo_nofollow'] = [
'type' => \WPGraphQL\Types::boolean(),
'description' => __('The persons email address'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_meta-robots-nofollow', true);
}
];
$fields['opengraph_title'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('SEO Facebook Title'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_opengraph-title', true);
}
];
$fields['opengraph_description'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('Facebook Description'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_opengraph-description', true);
}
];
$fields['opengraph_image'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('Facebook Image'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_opengraph-image', true);
}
];
$fields['seo_twitter_title'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('Twitter Title'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_twitter-title', true);
}
];
$fields['seo_twitter_card'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('Twitter Description'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_twitter-card', true);
}
];
$fields['seo_twitter_description'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('Twitter Description'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_twitter-description', true);
}
];
$fields['seo_twitter_image'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('Twitter Image'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_twitter-image', true);
}
];
$fields['seo_canonical'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('SEO Canonical url'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_canonical', true);
}
];
$fields['seo_redirect'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('SEO Redirect'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, '_yoast_wpseo_redirect', true);
}
];
$fields['gos_simple_redirect'] = [
'type' => \WPGraphQL\Types::string(),
'description' => __('SEO Redirect'),
'resolve' => function(\WPGraphQL\Model\Post $post) {
return get_post_meta($post->ID, 'gos_simple_redirect', true);
}
];
return $fields;
},99 );
}
}