Changeset 2616765
- Timestamp:
- 10/19/2021 07:31:40 PM (4 years ago)
- Location:
- add-wpgraphql-seo
- Files:
-
- 6 edited
- 1 copied
-
tags/4.16.0 (copied) (copied from add-wpgraphql-seo/trunk)
-
tags/4.16.0/CHANGELOG.md (modified) (1 diff)
-
tags/4.16.0/readme.txt (modified) (1 diff)
-
tags/4.16.0/wp-graphql-yoast-seo.php (modified) (5 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-graphql-yoast-seo.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-wpgraphql-seo/tags/4.16.0/CHANGELOG.md
r2597297 r2616765 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [4.16.0] - 2021-10-19 9 10 ### Added 11 12 - Added extra user fields 7 13 8 14 ## [4.15.1] - 2021-09-11 -
add-wpgraphql-seo/tags/4.16.0/readme.txt
r2597297 r2616765 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.1 5.17 Stable tag: 4.16.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/tags/4.16.0/wp-graphql-yoast-seo.php
r2597297 r2616765 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.1 5.111 * Version: 4.16.0 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 556 556 'fields' => [ 557 557 'raw' => ['type' => 'String'], 558 'pageType' => ['type' => ['list_of' => 'String']], 559 'articleType' => ['type' => ['list_of' => 'String']], 558 560 ], 559 561 ]); … … 565 567 'metaRobotsNoindex' => ['type' => 'String'], 566 568 'metaRobotsNofollow' => ['type' => 'String'], 569 'canonical' => ['type' => 'String'], 570 'opengraphTitle' => ['type' => 'String'], 571 'opengraphDescription' => ['type' => 'String'], 572 'opengraphImage' => ['type' => 'MediaItem'], 573 'twitterImage' => ['type' => 'MediaItem'], 574 'twitterTitle' => ['type' => 'String'], 575 'twitterDescription' => ['type' => 'String'], 576 'language' => ['type' => 'String'], 577 'region' => ['type' => 'String'], 578 'breadcrumbTitle' => ['type' => 'String'], 567 579 'fullHead' => ['type' => 'String'], 568 580 'social' => ['type' => 'SEOUserSocial'], … … 1048 1060 'metaRobotsNoindex' => $robots['index'], 1049 1061 'metaRobotsNofollow' => $robots['follow'], 1062 'canonical' => YoastSEO()->meta->for_author($user->userId) 1063 ->canonical, 1064 'opengraphTitle' => YoastSEO()->meta->for_author($user->userId) 1065 ->open_graph_title, 1066 'opengraphDescription' => YoastSEO()->meta->for_author( 1067 $user->userId 1068 )->open_graph_description, 1069 'opengraphImage' => $context 1070 ->get_loader('post') 1071 ->load_deferred( 1072 absint( 1073 YoastSEO()->meta->for_author($user->userId) 1074 ->open_graph_image_id 1075 ) 1076 ), 1077 'twitterImage' => $context 1078 ->get_loader('post') 1079 ->load_deferred( 1080 absint( 1081 YoastSEO()->meta->for_author($user->userId) 1082 ->twitter_image_id 1083 ) 1084 ), 1085 'twitterTitle' => YoastSEO()->meta->for_author($user->userId) 1086 ->twitter_title, 1087 'twitterDescription' => YoastSEO()->meta->for_author( 1088 $user->userId 1089 )->twitter_description, 1090 'language' => YoastSEO()->meta->for_author($user->userId) 1091 ->language, 1092 'region' => YoastSEO()->meta->for_author($user->userId)->region, 1093 'breadcrumbTitle' => YoastSEO()->meta->for_author($user->userId) 1094 ->breadcrumb_title, 1050 1095 'fullHead' => is_string( 1051 1096 YoastSEO() … … 1091 1136 'schema' => [ 1092 1137 'raw' => json_encode($schemaArray, JSON_UNESCAPED_SLASHES), 1138 'pageType' => is_array( 1139 YoastSEO()->meta->for_author($user->userId) 1140 ->schema_page_type 1141 ) 1142 ? YoastSEO()->meta->for_author($user->userId) 1143 ->schema_page_type 1144 : [], 1145 'articleType' => is_array( 1146 YoastSEO()->meta->for_author($user->userId) 1147 ->schema_article_type 1148 ) 1149 ? YoastSEO()->meta->for_author($user->userId) 1150 ->schema_article_type 1151 : [], 1093 1152 ], 1094 1153 ]; -
add-wpgraphql-seo/trunk/CHANGELOG.md
r2597297 r2616765 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 8 ## [4.16.0] - 2021-10-19 9 10 ### Added 11 12 - Added extra user fields 7 13 8 14 ## [4.15.1] - 2021-09-11 -
add-wpgraphql-seo/trunk/readme.txt
r2597297 r2616765 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.1 5.17 Stable tag: 4.16.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php
r2597297 r2616765 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.1 5.111 * Version: 4.16.0 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 556 556 'fields' => [ 557 557 'raw' => ['type' => 'String'], 558 'pageType' => ['type' => ['list_of' => 'String']], 559 'articleType' => ['type' => ['list_of' => 'String']], 558 560 ], 559 561 ]); … … 565 567 'metaRobotsNoindex' => ['type' => 'String'], 566 568 'metaRobotsNofollow' => ['type' => 'String'], 569 'canonical' => ['type' => 'String'], 570 'opengraphTitle' => ['type' => 'String'], 571 'opengraphDescription' => ['type' => 'String'], 572 'opengraphImage' => ['type' => 'MediaItem'], 573 'twitterImage' => ['type' => 'MediaItem'], 574 'twitterTitle' => ['type' => 'String'], 575 'twitterDescription' => ['type' => 'String'], 576 'language' => ['type' => 'String'], 577 'region' => ['type' => 'String'], 578 'breadcrumbTitle' => ['type' => 'String'], 567 579 'fullHead' => ['type' => 'String'], 568 580 'social' => ['type' => 'SEOUserSocial'], … … 1048 1060 'metaRobotsNoindex' => $robots['index'], 1049 1061 'metaRobotsNofollow' => $robots['follow'], 1062 'canonical' => YoastSEO()->meta->for_author($user->userId) 1063 ->canonical, 1064 'opengraphTitle' => YoastSEO()->meta->for_author($user->userId) 1065 ->open_graph_title, 1066 'opengraphDescription' => YoastSEO()->meta->for_author( 1067 $user->userId 1068 )->open_graph_description, 1069 'opengraphImage' => $context 1070 ->get_loader('post') 1071 ->load_deferred( 1072 absint( 1073 YoastSEO()->meta->for_author($user->userId) 1074 ->open_graph_image_id 1075 ) 1076 ), 1077 'twitterImage' => $context 1078 ->get_loader('post') 1079 ->load_deferred( 1080 absint( 1081 YoastSEO()->meta->for_author($user->userId) 1082 ->twitter_image_id 1083 ) 1084 ), 1085 'twitterTitle' => YoastSEO()->meta->for_author($user->userId) 1086 ->twitter_title, 1087 'twitterDescription' => YoastSEO()->meta->for_author( 1088 $user->userId 1089 )->twitter_description, 1090 'language' => YoastSEO()->meta->for_author($user->userId) 1091 ->language, 1092 'region' => YoastSEO()->meta->for_author($user->userId)->region, 1093 'breadcrumbTitle' => YoastSEO()->meta->for_author($user->userId) 1094 ->breadcrumb_title, 1050 1095 'fullHead' => is_string( 1051 1096 YoastSEO() … … 1091 1136 'schema' => [ 1092 1137 'raw' => json_encode($schemaArray, JSON_UNESCAPED_SLASHES), 1138 'pageType' => is_array( 1139 YoastSEO()->meta->for_author($user->userId) 1140 ->schema_page_type 1141 ) 1142 ? YoastSEO()->meta->for_author($user->userId) 1143 ->schema_page_type 1144 : [], 1145 'articleType' => is_array( 1146 YoastSEO()->meta->for_author($user->userId) 1147 ->schema_article_type 1148 ) 1149 ? YoastSEO()->meta->for_author($user->userId) 1150 ->schema_article_type 1151 : [], 1093 1152 ], 1094 1153 ];
Note: See TracChangeset
for help on using the changeset viewer.