[insert_php]
$the_query = new WP_Query( array( ‘cat’ => 14 ) );
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
echo ‘
‘;
$the_query->the_post();
echo ‘
$the_query->the_post();
echo ‘
‘ . get_the_title() . ‘
‘;
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
echo ‘
‘ . the_post_thumbnail() . ‘
‘;
}
echo get_the_content();
echo ‘
‘;
}
}
else {
echo “No storys found.”;
}
wp_reset_postdata();
[/insert_php]