Changeset 3290692
- Timestamp:
- 05/09/2025 08:31:59 PM (11 months ago)
- Location:
- sapientseo
- Files:
-
- 6 edited
- 1 copied
-
tags/1.0.16 (copied) (copied from sapientseo/trunk)
-
tags/1.0.16/inc/api/posts.php (modified) (2 diffs)
-
tags/1.0.16/readme.txt (modified) (1 diff)
-
tags/1.0.16/sapientseo.php (modified) (1 diff)
-
trunk/inc/api/posts.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/sapientseo.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sapientseo/tags/1.0.16/inc/api/posts.php
r3290632 r3290692 235 235 foreach ($query->posts as $post) { 236 236 $excerpt = has_excerpt($post->ID) ? get_the_excerpt($post->ID) : ''; 237 237 238 238 $posts[] = [ 239 239 'id' => $post->ID, 240 'title' => get_the_title($post->ID),240 'title' => html_entity_decode(get_the_title($post->ID)), 241 241 'status' => $post->post_status, 242 242 'slug' => $post->post_name, 243 'excerpt' => $excerpt,243 'excerpt' => html_entity_decode($excerpt), 244 244 'created_at' => get_the_date('c', $post->ID), 245 245 'modified_at' => get_post_modified_time('c', true, $post->ID), … … 291 291 return rest_ensure_response([ 292 292 '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)), 296 296 'status' => $post->post_status, 297 297 'post_type' => $post->post_type, -
sapientseo/tags/1.0.16/readme.txt
r3290632 r3290692 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.4 6 Stable tag: 1.0.1 56 Stable tag: 1.0.16 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
sapientseo/tags/1.0.16/sapientseo.php
r3290632 r3290692 3 3 * Plugin Name: SapientSEO 4 4 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints. 5 * Version: 1.0.1 55 * Version: 1.0.16 6 6 * Author: SapientSEO 7 7 * Plugin URI: https://sapientseo.ai -
sapientseo/trunk/inc/api/posts.php
r3290632 r3290692 235 235 foreach ($query->posts as $post) { 236 236 $excerpt = has_excerpt($post->ID) ? get_the_excerpt($post->ID) : ''; 237 237 238 238 $posts[] = [ 239 239 'id' => $post->ID, 240 'title' => get_the_title($post->ID),240 'title' => html_entity_decode(get_the_title($post->ID)), 241 241 'status' => $post->post_status, 242 242 'slug' => $post->post_name, 243 'excerpt' => $excerpt,243 'excerpt' => html_entity_decode($excerpt), 244 244 'created_at' => get_the_date('c', $post->ID), 245 245 'modified_at' => get_post_modified_time('c', true, $post->ID), … … 291 291 return rest_ensure_response([ 292 292 '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)), 296 296 'status' => $post->post_status, 297 297 'post_type' => $post->post_type, -
sapientseo/trunk/readme.txt
r3290632 r3290692 4 4 Tested up to: 6.8 5 5 Requires PHP: 7.4 6 Stable tag: 1.0.1 56 Stable tag: 1.0.16 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
sapientseo/trunk/sapientseo.php
r3290632 r3290692 3 3 * Plugin Name: SapientSEO 4 4 * Description: Connect your WordPress site to SapientSEO using secure custom REST API endpoints. 5 * Version: 1.0.1 55 * Version: 1.0.16 6 6 * Author: SapientSEO 7 7 * Plugin URI: https://sapientseo.ai
Note: See TracChangeset
for help on using the changeset viewer.