1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php if( function_exists( 'single_latest_posts' ) ) { $parameters = array( 'title_only' => 'false', 'category' => 'blog', 'auto_excerpt' => 'true' ); echo single_latest_posts( $parameters ); } else { echo 'Nothing to see here'; } ?>