Viewing 1 replies (of 1 total)
  • Use $json['title']['text'] = $post->post_content; instead of $json['title']['text'] = $post->post_excerpt;

    optionally you can use this filter in order to get the formatted content :

    $output =  apply_filters( 'the_content', $post->post_content );
    $json['title']['text'] = $output;

    Kindly

    • This reply was modified 7 years, 9 months ago by RubensBen.
Viewing 1 replies (of 1 total)
  • The topic ‘Not pulling full content from post’ is closed to new replies.