Changeset 2543468
- Timestamp:
- 06/07/2021 07:03:26 AM (5 years ago)
- Location:
- add-wpgraphql-seo
- Files:
-
- 6 edited
- 1 copied
-
tags/4.14.2 (copied) (copied from add-wpgraphql-seo/trunk)
-
tags/4.14.2/CHANGELOG.md (modified) (1 diff)
-
tags/4.14.2/readme.txt (modified) (1 diff)
-
tags/4.14.2/wp-graphql-yoast-seo.php (modified) (3 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-graphql-yoast-seo.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
add-wpgraphql-seo/tags/4.14.2/CHANGELOG.md
r2543466 r2543468 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.14.2] - 2021-06-07 9 10 ### Changed 11 12 - Guard against undefined meta properties 7 13 8 14 ## [4.14.1] - 2021-06-01 -
add-wpgraphql-seo/tags/4.14.2/readme.txt
r2543466 r2543468 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.14. 17 Stable tag: 4.14.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
add-wpgraphql-seo/tags/4.14.2/wp-graphql-yoast-seo.php
r2543466 r2543468 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.14. 111 * Version: 4.14.2 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 1109 1109 ->description 1110 1110 ), 1111 'focuskw' => wp_gql_seo_format_string( 1112 $meta['wpseo_focuskw'] 1113 ), 1114 'metaKeywords' => wp_gql_seo_format_string( 1115 $meta['wpseo_metakeywords'] 1116 ), 1111 'focuskw' => isset($meta['wpseo_focuskw']) 1112 ? wp_gql_seo_format_string($meta['wpseo_focuskw']) 1113 : $meta['wpseo_focuskw'], 1114 'metaKeywords' => isset($meta['wpseo_metakeywords']) 1115 ? wp_gql_seo_format_string( 1116 $meta['wpseo_metakeywords'] 1117 ) 1118 : null, 1117 1119 'metaRobotsNoindex' => $robots['index'], 1118 1120 'metaRobotsNofollow' => $robots['follow'], … … 1175 1177 absint($meta['wpseo_twitter-image-id']) 1176 1178 ), 1177 'canonical' => wp_gql_seo_format_string(1178 $meta['canonical']1179 ),1179 'canonical' => isset($meta['canonical']) 1180 ? wp_gql_seo_format_string($meta['canonical']) 1181 : null, 1180 1182 'breadcrumbs' => YoastSEO()->meta->for_term( 1181 1183 $term->term_id -
add-wpgraphql-seo/trunk/CHANGELOG.md
r2543466 r2543468 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.14.2] - 2021-06-07 9 10 ### Changed 11 12 - Guard against undefined meta properties 7 13 8 14 ## [4.14.1] - 2021-06-01 -
add-wpgraphql-seo/trunk/readme.txt
r2543466 r2543468 5 5 Tested up to: 5.7 6 6 Requires PHP: 7.1 7 Stable tag: 4.14. 17 Stable tag: 4.14.2 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
r2543466 r2543468 9 9 * Text Domain: wp-graphql-yoast-seo 10 10 * Domain Path: /languages 11 * Version: 4.14. 111 * Version: 4.14.2 12 12 * 13 13 * @package WP_Graphql_YOAST_SEO … … 1109 1109 ->description 1110 1110 ), 1111 'focuskw' => wp_gql_seo_format_string( 1112 $meta['wpseo_focuskw'] 1113 ), 1114 'metaKeywords' => wp_gql_seo_format_string( 1115 $meta['wpseo_metakeywords'] 1116 ), 1111 'focuskw' => isset($meta['wpseo_focuskw']) 1112 ? wp_gql_seo_format_string($meta['wpseo_focuskw']) 1113 : $meta['wpseo_focuskw'], 1114 'metaKeywords' => isset($meta['wpseo_metakeywords']) 1115 ? wp_gql_seo_format_string( 1116 $meta['wpseo_metakeywords'] 1117 ) 1118 : null, 1117 1119 'metaRobotsNoindex' => $robots['index'], 1118 1120 'metaRobotsNofollow' => $robots['follow'], … … 1175 1177 absint($meta['wpseo_twitter-image-id']) 1176 1178 ), 1177 'canonical' => wp_gql_seo_format_string(1178 $meta['canonical']1179 ),1179 'canonical' => isset($meta['canonical']) 1180 ? wp_gql_seo_format_string($meta['canonical']) 1181 : null, 1180 1182 'breadcrumbs' => YoastSEO()->meta->for_term( 1181 1183 $term->term_id
Note: See TracChangeset
for help on using the changeset viewer.