Search Results for 'code'
-
Search Results
-
Hi,
Here is what I see using codestyling localisation :
Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions wonโt be executed anymore. Please contact the Author about that.
Thanks.
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' );
Hi,
I have a catagory with several different forums in it. I would like to display the most recent topics from the category. Am I right in thinking there is no shortcode that allows this?
Could I achieve this by just getting them to display some how by forum id? If I have to query the latest topics from certain forums which function would I have to use? I have looked at the docs but the functions don’t seem to be documented.
Thanks for any help;

