3,
'ignore_sticky_posts' => 1,
'post__not_in' => get_option( 'sticky_posts' ),
'meta_query' => array(
array(
'key' => 'blogsite-featured',
'value' => 'yes'
)
)
);
global $wp_query;
$merged_query_args = array_merge( $wp_query->query, $custom_query_args );
query_posts( $merged_query_args );
if ( $wp_query->have_posts() && (!get_query_var('paged')) ) {
?>
have_posts() ) : $wp_query->the_post();
?>
-
';
}
?>
3,
'ignore_sticky_posts' => 1,
'offset' => '3',
'post__not_in' => get_option( 'sticky_posts' ),
'meta_query' => array(
array(
'key' => 'blogsite-featured',
'value' => 'yes'
)
)
);
global $wp_query;
$merged_query_args = array_merge( $wp_query->query, $custom_query_args );
query_posts( $merged_query_args );
if ( $wp_query->have_posts() && (!get_query_var('paged')) ) {
?>
have_posts() ) : $wp_query->the_post();
?>