Changeset 2597297
- Timestamp:
- 09/11/2021 01:27:03 PM (5 years ago)
- Location:
- add-wpgraphql-seo
- Files:
-
- 6 edited
- 1 copied
-
tags/4.15.1 (copied) (copied from add-wpgraphql-seo/trunk)
-
tags/4.15.1/CHANGELOG.md (modified) (1 diff)
-
tags/4.15.1/readme.txt (modified) (1 diff)
-
tags/4.15.1/wp-graphql-yoast-seo.php (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-graphql-yoast-seo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-wpgraphql-seo/tags/4.15.1/CHANGELOG.md
r2565085 r2597297 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.15.1] - 2021-09-11 9 10 ### Changed 11 12 - Fix canonical url for taxonomies 7 13 8 14 ## [4.15.0] - 2021-07-15 -
add-wpgraphql-seo/tags/4.15.1/readme.txt
r2565085 r2597297 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.15. 07 Stable tag: 4.15.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/tags/4.15.1/wp-graphql-yoast-seo.php
r2565085 r2597297 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.15. 011 * Version: 4.15.1 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 1209 1209 absint($meta['wpseo_twitter-image-id']) 1210 1210 ), 1211 'canonical' => isset($meta['canonical']) 1212 ? wp_gql_seo_format_string($meta['canonical']) 1211 'canonical' => isset( 1212 YoastSEO()->meta->for_term($term->term_id)->canonical 1213 ) 1214 ? wp_gql_seo_format_string( 1215 YoastSEO()->meta->for_term($term->term_id) 1216 ->canonical 1217 ) 1213 1218 : null, 1214 1219 'breadcrumbs' => YoastSEO()->meta->for_term( -
add-wpgraphql-seo/trunk/CHANGELOG.md
r2565085 r2597297 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.15.1] - 2021-09-11 9 10 ### Changed 11 12 - Fix canonical url for taxonomies 7 13 8 14 ## [4.15.0] - 2021-07-15 -
add-wpgraphql-seo/trunk/readme.txt
r2565085 r2597297 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.15. 07 Stable tag: 4.15.1 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
r2565085 r2597297 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.15. 011 * Version: 4.15.1 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 1209 1209 absint($meta['wpseo_twitter-image-id']) 1210 1210 ), 1211 'canonical' => isset($meta['canonical']) 1212 ? wp_gql_seo_format_string($meta['canonical']) 1211 'canonical' => isset( 1212 YoastSEO()->meta->for_term($term->term_id)->canonical 1213 ) 1214 ? wp_gql_seo_format_string( 1215 YoastSEO()->meta->for_term($term->term_id) 1216 ->canonical 1217 ) 1213 1218 : null, 1214 1219 'breadcrumbs' => YoastSEO()->meta->for_term(
Note: See TracChangeset
for help on using the changeset viewer.