Anonymous
public text v1 · immutable<?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;
?>