Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

filter topic on date base

$
0
0

Hi everyone,

Any one know how to filter topics on date base. means i want to list all last 5 days topics.

i see code this code in function bbp_has_topics( $args = '' )


$default = array(
		'post_type'      => bbp_get_topic_post_type(), // Narrow query down to bbPress topics
		'post_parent'    => $default_post_parent,      // Forum ID
		'meta_key'       => '_bbp_last_active_time',   // Make sure topic has some last activity time
		'orderby'        => 'meta_value',              // 'meta_value', 'author', 'date', 'title', 'modified', 'parent', rand',
		'order'          => 'DESC',                    // 'ASC', 'DESC'
		'posts_per_page' => bbp_get_topics_per_page(), // Topics per page
		'paged'          => bbp_get_paged(),           // Page Number
		's'              => $default_topic_search,     // Topic Search
		'show_stickies'  => $default_show_stickies,    // Ignore sticky topics?
		'max_num_pages'  => false,                     // Maximum number of pages to show
	);

is it possible to pass date filter in function bbp_has_topics argument.


Viewing all articles
Browse latest Browse all 3638

Trending Articles