[PROBLEM] Lấy tất cả bài viết thuộc chuyên mục (ok)

Chuyên mục acform có id là 2

<?php  
	$args = array(
		'cat' => 2
	);
	$the_query = new WP_Query( $args );
	// The Loop
	if ( $the_query->have_posts() ) :
		while ( $the_query->have_posts() ) : $the_query->the_post();
		  echo get_the_title() . '<br/>';
		endwhile;
	endif;
	wp_reset_postdata();
?>

Last updated