Changeset 2861055
- Timestamp:
- 02/06/2023 09:20:11 PM (3 years ago)
- Location:
- add-wpgraphql-seo
- Files:
-
- 10 edited
- 1 copied
-
tags/4.22.0 (copied) (copied from add-wpgraphql-seo/trunk)
-
tags/4.22.0/CHANGELOG.md (modified) (1 diff)
-
tags/4.22.0/README.md (modified) (1 diff)
-
tags/4.22.0/package.json (modified) (1 diff)
-
tags/4.22.0/readme.txt (modified) (1 diff)
-
tags/4.22.0/wp-graphql-yoast-seo.php (modified) (5 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/package.json (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.22.0/CHANGELOG.md
r2844702 r2861055 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.22.0] - 2022-02-06 9 10 ### Added 11 12 - `Date archive` title and description 7 13 8 14 ## [4.21.0] - 2022-01-06 -
add-wpgraphql-seo/tags/4.22.0/README.md
r2823146 r2861055 259 259 title 260 260 } 261 date { 262 description 263 title 264 } 261 265 config { 262 266 separator -
add-wpgraphql-seo/tags/4.22.0/package.json
r2740469 r2861055 1 1 { 2 2 "name": "wp-graphql-yoast-seo", 3 "version": "4. 13.1",3 "version": "4.22.0", 4 4 "description": "A WPGraphQL Extension that adds support for Yoast SEO", 5 5 "scripts": { -
add-wpgraphql-seo/tags/4.22.0/readme.txt
r2844702 r2861055 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.1 7 Stable tag: 4.2 1.07 Stable tag: 4.22.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/tags/4.22.0/wp-graphql-yoast-seo.php
r2844702 r2861055 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.2 1.011 * Version: 4.22.0 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 324 324 ], 325 325 ]); 326 register_graphql_object_type('SEOGlobalMetaDate', [ 327 'description' => __('The Yoast SEO Date data', 'wp-graphql-yoast-seo'), 328 'fields' => [ 329 'title' => ['type' => 'String'], 330 'description' => ['type' => 'String'], 331 ], 332 ]); 326 333 register_graphql_object_type('SEOGlobalMetaConfig', [ 327 334 'description' => __('The Yoast SEO meta config data', 'wp-graphql-yoast-seo'), … … 342 349 'homepage' => ['type' => 'SEOGlobalMetaHome'], 343 350 'author' => ['type' => 'SEOGlobalMetaAuthor'], 351 'date' => ['type' => 'SEOGlobalMetaDate'], 344 352 'config' => ['type' => 'SEOGlobalMetaConfig'], 345 353 'notFound' => ['type' => 'SEOGlobalMeta404'], … … 624 632 'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-author-wpseo'])), 625 633 ]; 634 $date = [ 635 'title' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['title-archive-wpseo'])), 636 'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-archive-wpseo'])), 637 ]; 626 638 $config = [ 627 639 'separator' => wp_gql_seo_format_string($all['separator']), … … 637 649 'homepage' => $homepage, 638 650 'author' => $author, 651 'date' => $date, 639 652 'config' => $config, 640 653 'notFound' => $notFound, -
add-wpgraphql-seo/trunk/CHANGELOG.md
r2844702 r2861055 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.22.0] - 2022-02-06 9 10 ### Added 11 12 - `Date archive` title and description 7 13 8 14 ## [4.21.0] - 2022-01-06 -
add-wpgraphql-seo/trunk/README.md
r2823146 r2861055 259 259 title 260 260 } 261 date { 262 description 263 title 264 } 261 265 config { 262 266 separator -
add-wpgraphql-seo/trunk/package.json
r2740469 r2861055 1 1 { 2 2 "name": "wp-graphql-yoast-seo", 3 "version": "4. 13.1",3 "version": "4.22.0", 4 4 "description": "A WPGraphQL Extension that adds support for Yoast SEO", 5 5 "scripts": { -
add-wpgraphql-seo/trunk/readme.txt
r2844702 r2861055 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.1 7 Stable tag: 4.2 1.07 Stable tag: 4.22.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
r2844702 r2861055 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.2 1.011 * Version: 4.22.0 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 324 324 ], 325 325 ]); 326 register_graphql_object_type('SEOGlobalMetaDate', [ 327 'description' => __('The Yoast SEO Date data', 'wp-graphql-yoast-seo'), 328 'fields' => [ 329 'title' => ['type' => 'String'], 330 'description' => ['type' => 'String'], 331 ], 332 ]); 326 333 register_graphql_object_type('SEOGlobalMetaConfig', [ 327 334 'description' => __('The Yoast SEO meta config data', 'wp-graphql-yoast-seo'), … … 342 349 'homepage' => ['type' => 'SEOGlobalMetaHome'], 343 350 'author' => ['type' => 'SEOGlobalMetaAuthor'], 351 'date' => ['type' => 'SEOGlobalMetaDate'], 344 352 'config' => ['type' => 'SEOGlobalMetaConfig'], 345 353 'notFound' => ['type' => 'SEOGlobalMeta404'], … … 624 632 'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-author-wpseo'])), 625 633 ]; 634 $date = [ 635 'title' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['title-archive-wpseo'])), 636 'description' => wp_gql_seo_format_string(wp_gql_seo_replace_vars($all['metadesc-archive-wpseo'])), 637 ]; 626 638 $config = [ 627 639 'separator' => wp_gql_seo_format_string($all['separator']), … … 637 649 'homepage' => $homepage, 638 650 'author' => $author, 651 'date' => $date, 639 652 'config' => $config, 640 653 'notFound' => $notFound,
Note: See TracChangeset
for help on using the changeset viewer.