Plugin Directory

Changeset 3301661


Ignore:
Timestamp:
05/27/2025 04:46:29 PM (10 months ago)
Author:
galbc
Message:

Prepare trunk for release 1.0.36

Location:
sapientseo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sapientseo/trunk/inc/api/terms.php

    r3301647 r3301661  
    3232            return [
    3333                'id' => $cat->term_id,
    34                 'name' => $cat->name,
     34                'name' => html_entity_decode($cat->name),
    3535                'slug' => $cat->slug,
    36                 'description' => $cat->description,
     36                'description' => html_entity_decode($cat->description),
    3737                'type' => 'category',
    3838                'count' => $cat->count,
     
    4343            return [
    4444                'id' => $tag->term_id,
    45                 'name' => $tag->name,
     45                'name' => html_entity_decode($tag->name),
    4646                'slug' => $tag->slug,
    47                 'description' => $tag->description,
     47                'description' => html_entity_decode($tag->description),
    4848                'type' => 'post_tag',
    4949                'count' => $tag->count,
  • sapientseo/trunk/readme.txt

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

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