All pastes #2075006 Raw Edit

Anonymous

public text v1 · immutable
#2075006 ·published 2011-06-05 10:44 UTC
rendered paste body
<?php
	$args = array(
		'orderby' => 'title', 'order' => 'ASC',
		'category__not_in' => array ('7') 
	);

	$query = new WP_Query($args);
	if($query->have_posts()) :
	while ($query->have_posts()) : $query->the_post();
		the_title(); echo '<br>';
	endwhile;
	endif; 
?>