Plugin Directory

Changeset 3297606


Ignore:
Timestamp:
05/20/2025 06:38:56 PM (11 months ago)
Author:
galbc
Message:

Release version 1.0.27

Location:
sapientseo
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • sapientseo/tags/1.0.27/inc/api/posts.php

    r3295481 r3297606  
    275275    }
    276276
    277     // ACF fields
     277    // ACF fields (only if ACF plugin is active)
    278278    $acf = [];
    279     if (function_exists('acf_get_field_groups')) {
     279    if (defined('ACF_VERSION') && class_exists('ACF') && function_exists('acf_get_field_groups')) {
    280280        $field_groups = acf_get_field_groups(['post_type' => $post->post_type]);
    281281        foreach ($field_groups as $group) {
  • sapientseo/tags/1.0.27/readme.txt

    r3295481 r3297606  
    44Tested up to: 6.8
    55Requires PHP: 7.4
    6 Stable tag: 1.0.26
     6Stable tag: 1.0.27
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • sapientseo/tags/1.0.27/sapientseo.php

    r3295481 r3297606  
    33 * Plugin Name: SapientSEO
    44 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints.
    5  * Version: 1.0.26
     5 * Version: 1.0.27
    66 * Author: SapientSEO
    77 * Plugin URI: https://sapientseo.ai
  • sapientseo/trunk/inc/api/posts.php

    r3295481 r3297606  
    275275    }
    276276
    277     // ACF fields
     277    // ACF fields (only if ACF plugin is active)
    278278    $acf = [];
    279     if (function_exists('acf_get_field_groups')) {
     279    if (defined('ACF_VERSION') && class_exists('ACF') && function_exists('acf_get_field_groups')) {
    280280        $field_groups = acf_get_field_groups(['post_type' => $post->post_type]);
    281281        foreach ($field_groups as $group) {
  • sapientseo/trunk/readme.txt

    r3295481 r3297606  
    44Tested up to: 6.8
    55Requires PHP: 7.4
    6 Stable tag: 1.0.26
     6Stable tag: 1.0.27
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • sapientseo/trunk/sapientseo.php

    r3295481 r3297606  
    33 * Plugin Name: SapientSEO
    44 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints.
    5  * Version: 1.0.26
     5 * Version: 1.0.27
    66 * Author: SapientSEO
    77 * Plugin URI: https://sapientseo.ai
Note: See TracChangeset for help on using the changeset viewer.