Plugin Directory

Changeset 2597297


Ignore:
Timestamp:
09/11/2021 01:27:03 PM (5 years ago)
Author:
ash_hitch
Message:

Update to version 4.15.1 from GitHub

Location:
add-wpgraphql-seo
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • add-wpgraphql-seo/tags/4.15.1/CHANGELOG.md

    r2565085 r2597297  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and 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
    713
    814## [4.15.0] - 2021-07-15
  • add-wpgraphql-seo/tags/4.15.1/readme.txt

    r2565085 r2597297  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 4.15.0
     7Stable tag: 4.15.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/tags/4.15.1/wp-graphql-yoast-seo.php

    r2565085 r2597297  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.15.0
     11 * Version:         4.15.1
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    12091209                                    absint($meta['wpseo_twitter-image-id'])
    12101210                                ),
    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                                )
    12131218                                : null,
    12141219                            'breadcrumbs' => YoastSEO()->meta->for_term(
  • add-wpgraphql-seo/trunk/CHANGELOG.md

    r2565085 r2597297  
    55The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
    66and 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
    713
    814## [4.15.0] - 2021-07-15
  • add-wpgraphql-seo/trunk/readme.txt

    r2565085 r2597297  
    55Tested up to: 5.7
    66Requires PHP: 7.1
    7 Stable tag: 4.15.0
     7Stable tag: 4.15.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • add-wpgraphql-seo/trunk/wp-graphql-yoast-seo.php

    r2565085 r2597297  
    99 * Text Domain:     wp-graphql-yoast-seo
    1010 * Domain Path:     /languages
    11  * Version:         4.15.0
     11 * Version:         4.15.1
    1212 *
    1313 * @package         WP_Graphql_YOAST_SEO
     
    12091209                                    absint($meta['wpseo_twitter-image-id'])
    12101210                                ),
    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                                )
    12131218                                : null,
    12141219                            'breadcrumbs' => YoastSEO()->meta->for_term(
Note: See TracChangeset for help on using the changeset viewer.