Търсене по ключови думи в книги от библиотеката
test content
‘7’,
‘order’ => ‘ASC’,
‘cat’ => ‘4’
);
// Create a new instance
$second_query = new WP_Query($args);
// The Loop
while( $second_query->have_posts() ) : $second_query->the_post();
echo ‘
the_title();
echo ‘
‘;
endwhile;
wp_reset_postdata();
?>