sharon (September 12th, 2011)
<?php
// show all ads but make sure the sticky featured ads don't show up first
$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
query_posts( array('post_type' => APP_POST_TYPE, 'ignore_sticky_posts' => 1, 'paged' => $paged) );
?>
<?php
// show all random ads but make sure the sticky featured ads don't show up first
$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
query_posts( array('post_type' => APP_POST_TYPE, 'ignore_sticky_posts' => 1, 'paged' => $paged, 'orderby' => 'rand') );
?>
<?php appthemes_before_post_content(); ?>
<?php if (function_exists('wpfp_link')) { wpfp_link(); } ?>
sharon (September 12th, 2011)
mr_green (September 20th, 2011)
There are currently 1 users browsing this thread. (0 members and 1 guests)