WP_Query in a shortcode

When you are constructing the $output variable, you need to consider

get_the_post_thumbnail()
get_the_excerpt()
get_the_content()
get_permalink()

that return the values instead of

the_post_thumbnail()
the_excerpt()
the_content()
the_permalink()

that echo the values.

Leave a Comment