Şu anda şu kodla getiriyorum ama istediğim şey dediğim gibi belli bir tarihten sonrasını çekmek..
$recent = new WP_Query('cat=-'.$katmid.'&v_sortby=views&v_orderby=views&showposts=5'); 3
●275
$recent = new WP_Query('cat=-'.$katmid.'&v_sortby=views&v_orderby=views&showposts=5'); function yakuphoca_filter_where( $where = '' ) {
$where .= " AND post_date >= '2012-03-01'";
return $where;
}
add_filter( 'posts_where', 'yakuphoca_filter_where' );
$recent = new WP_Query('cat=-'.$katmid.'&v_sortby=views&v_orderby=views&showposts=5');
remove_filter( 'posts_where', 'yakuphoca_filter_where' );Denemedim ama mantıken çalışacağını düşünüyorum.