Excerpt in post grids
-
In the masonry post grid and others, we noticed that the post excerpt is being shown as-is without running through the WordPress the_excerpt() function. Can you fix that in the next release?
I suggest making the following change In content_elements_misc/misc.php within the bt_bb_get_posts_array_item() function:
$post_data['excerpt'] = get_post_field( 'post_excerpt', $post_id );
to
$post_data['excerpt'] = get_the_excerpt($post_id);
Thanks.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Excerpt in post grids’ is closed to new replies.