Is it possible to loop bbp_register_view ?
-
I have a taxonomy:location
I try to register views for all terms.but it doesn’t work.
function taxonomy_custom_views() {
$args = array('orderby'=>'asc','hide_empty'=>true);
$terms = get_terms(array('location'), $args);
foreach($terms as $term){
$location_term=$term->slug ;
$location_name=$term->name ;
bbp_register_view( $location_term , __( $location_name ),array('tax_query' => array(array('taxonomy' => 'location','field' => 'slug','terms' => $location_term,),),), false );
}
}
add_action( 'bbp_register_views', 'taxonomy_custom_views' );
- You must be logged in to reply to this topic.