Plugin Directory

Changeset 3290692


Ignore:
Timestamp:
05/09/2025 08:31:59 PM (11 months ago)
Author:
galbc
Message:

Release version 1.0.16

Location:
sapientseo
Files:
6 edited
1 copied

Legend:

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

    r3290632 r3290692  
    235235    foreach ($query->posts as $post) {
    236236        $excerpt = has_excerpt($post->ID) ? get_the_excerpt($post->ID) : '';
    237    
     237
    238238        $posts[] = [
    239239            'id'          => $post->ID,
    240             'title'       => get_the_title($post->ID),
     240            'title'       => html_entity_decode(get_the_title($post->ID)),
    241241            'status'      => $post->post_status,
    242242            'slug'        => $post->post_name,
    243             'excerpt'     => $excerpt,
     243            'excerpt'     => html_entity_decode($excerpt),
    244244            'created_at'  => get_the_date('c', $post->ID),
    245245            'modified_at' => get_post_modified_time('c', true, $post->ID),
     
    291291    return rest_ensure_response([
    292292        'id'           => $post_id,
    293         'title'        => get_the_title($post),
    294         'content'      => apply_filters('the_content', $post->post_content),
    295         'excerpt'      => get_the_excerpt($post),
     293        'title'        => html_entity_decode(get_the_title($post)),
     294        'content'      => html_entity_decode(apply_filters('the_content', $post->post_content)),
     295        'excerpt'      => html_entity_decode(get_the_excerpt($post)),
    296296        'status'       => $post->post_status,
    297297        'post_type'    => $post->post_type,
  • sapientseo/tags/1.0.16/readme.txt

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

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

    r3290632 r3290692  
    235235    foreach ($query->posts as $post) {
    236236        $excerpt = has_excerpt($post->ID) ? get_the_excerpt($post->ID) : '';
    237    
     237
    238238        $posts[] = [
    239239            'id'          => $post->ID,
    240             'title'       => get_the_title($post->ID),
     240            'title'       => html_entity_decode(get_the_title($post->ID)),
    241241            'status'      => $post->post_status,
    242242            'slug'        => $post->post_name,
    243             'excerpt'     => $excerpt,
     243            'excerpt'     => html_entity_decode($excerpt),
    244244            'created_at'  => get_the_date('c', $post->ID),
    245245            'modified_at' => get_post_modified_time('c', true, $post->ID),
     
    291291    return rest_ensure_response([
    292292        'id'           => $post_id,
    293         'title'        => get_the_title($post),
    294         'content'      => apply_filters('the_content', $post->post_content),
    295         'excerpt'      => get_the_excerpt($post),
     293        'title'        => html_entity_decode(get_the_title($post)),
     294        'content'      => html_entity_decode(apply_filters('the_content', $post->post_content)),
     295        'excerpt'      => html_entity_decode(get_the_excerpt($post)),
    296296        'status'       => $post->post_status,
    297297        'post_type'    => $post->post_type,
  • sapientseo/trunk/readme.txt

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

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