-
// The Query
$args = 'posts_per_page=-1&post_status=publish&cat=-'.$id.'&year='.$aar;
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
if ( get_the_post_thumbnail() ) {
echo '
- '; echo ''; the_title(); echo ' ';} endwhile; // Reset Query wp_reset_query(); ?>
// displays the page title
//thematic_page_title();
$aar = get_the_time('Y');
$idObj = get_category_by_slug('Fréttir');
$id = $idObj->term_id;?>
// action hook for placing content below the category loop
thematic_below_categoryloop();
// create the navigation below the content
//thematic_navigation_below();
?>