Skip to content

Commit

Permalink
Update SS_WordpressPost.php
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-thomas committed Mar 16, 2016
1 parent fa1b7db commit f2a86be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/posts/SS_WordpressPost.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function transform($post)
return [
'id' => $post->ID,
'content' => apply_filters('the_content', $post->post_content),
'excerpt' => apply_filters('the_excerpt', $post->post_excerpt),
'excerpt' => apply_filters('get_the_excerpt', $post->post_excerpt),
'timestamp' => get_the_time('U', $post->ID),
'permalink' => get_permalink($post->ID)
];
Expand Down

0 comments on commit f2a86be

Please sign in to comment.