Changeset 3301661
- Timestamp:
- 05/27/2025 04:46:29 PM (10 months ago)
- Location:
- sapientseo/trunk
- Files:
-
- 3 edited
-
inc/api/terms.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
sapientseo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sapientseo/trunk/inc/api/terms.php
r3301647 r3301661 32 32 return [ 33 33 'id' => $cat->term_id, 34 'name' => $cat->name,34 'name' => html_entity_decode($cat->name), 35 35 'slug' => $cat->slug, 36 'description' => $cat->description,36 'description' => html_entity_decode($cat->description), 37 37 'type' => 'category', 38 38 'count' => $cat->count, … … 43 43 return [ 44 44 'id' => $tag->term_id, 45 'name' => $tag->name,45 'name' => html_entity_decode($tag->name), 46 46 'slug' => $tag->slug, 47 'description' => $tag->description,47 'description' => html_entity_decode($tag->description), 48 48 'type' => 'post_tag', 49 49 'count' => $tag->count, -
sapientseo/trunk/readme.txt
r3301647 r3301661 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.4 6 Stable tag: 1.0.3 56 Stable tag: 1.0.36 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
sapientseo/trunk/sapientseo.php
r3301647 r3301661 3 3 * Plugin Name: SapientSEO 4 4 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints. 5 * Version: 1.0.3 45 * Version: 1.0.36 6 6 * Author: SapientSEO 7 7 * Plugin URI: https://sapientseo.ai
Note: See TracChangeset
for help on using the changeset viewer.