function postsbycategory() { // the query $the_query = new WP_Query( array( 'category_name' => 'karan-johar', 'posts_per_page' => 6 ) ); $i=1; // The Loop if ( $the_query->have_posts() ) { $string .= ''; return $string; }