Search Results for 'code'
-
Search Results
-
I’ve successfully replaced the ‘freshness’ string to ‘last post’ for my forum index. I copied the
loop-forums.phptemplate and tweaked it so. The issue now is that it won’t work for the ‘sub forum’ index. I’m kinda tired after opening all the templates. Could anyone here tell me the template path for the ‘sub forum’ loop?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;

