Changeset 3297606
- Timestamp:
- 05/20/2025 06:38:56 PM (11 months ago)
- Location:
- sapientseo
- Files:
-
- 6 edited
- 1 copied
-
tags/1.0.27 (copied) (copied from sapientseo/trunk)
-
tags/1.0.27/inc/api/posts.php (modified) (1 diff)
-
tags/1.0.27/readme.txt (modified) (1 diff)
-
tags/1.0.27/sapientseo.php (modified) (1 diff)
-
trunk/inc/api/posts.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/sapientseo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sapientseo/tags/1.0.27/inc/api/posts.php
r3295481 r3297606 275 275 } 276 276 277 // ACF fields 277 // ACF fields (only if ACF plugin is active) 278 278 $acf = []; 279 if ( function_exists('acf_get_field_groups')) {279 if (defined('ACF_VERSION') && class_exists('ACF') && function_exists('acf_get_field_groups')) { 280 280 $field_groups = acf_get_field_groups(['post_type' => $post->post_type]); 281 281 foreach ($field_groups as $group) { -
sapientseo/tags/1.0.27/readme.txt
r3295481 r3297606 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.4 6 Stable tag: 1.0.2 66 Stable tag: 1.0.27 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
sapientseo/tags/1.0.27/sapientseo.php
r3295481 r3297606 3 3 * Plugin Name: SapientSEO 4 4 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints. 5 * Version: 1.0.2 65 * Version: 1.0.27 6 6 * Author: SapientSEO 7 7 * Plugin URI: https://sapientseo.ai -
sapientseo/trunk/inc/api/posts.php
r3295481 r3297606 275 275 } 276 276 277 // ACF fields 277 // ACF fields (only if ACF plugin is active) 278 278 $acf = []; 279 if ( function_exists('acf_get_field_groups')) {279 if (defined('ACF_VERSION') && class_exists('ACF') && function_exists('acf_get_field_groups')) { 280 280 $field_groups = acf_get_field_groups(['post_type' => $post->post_type]); 281 281 foreach ($field_groups as $group) { -
sapientseo/trunk/readme.txt
r3295481 r3297606 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.4 6 Stable tag: 1.0.2 66 Stable tag: 1.0.27 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
sapientseo/trunk/sapientseo.php
r3295481 r3297606 3 3 * Plugin Name: SapientSEO 4 4 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints. 5 * Version: 1.0.2 65 * Version: 1.0.27 6 6 * Author: SapientSEO 7 7 * Plugin URI: https://sapientseo.ai
Note: See TracChangeset
for help on using the changeset viewer.