Logesh Kumar Rajkumar
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Post Navigation] navigation buttons not showing upHi, Sorry for the delay. The issue has been fixed. Now the plugin is compatible with all HTML-5 based Genesis themes. Please update to the new version 3.0.3.
Thank You
Forum: Fixing WordPress
In reply to: [Profile Pic] [Plugin: Profile Pic] Profile pic wont upload in 3.2Hi its working for me too, but in comments, the image appears broken..I have installed bbpress forum.Same case there..please help me out
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Log In – Menu BarHi gh0zt my need is same as yours ..i wish to have Login / Register instead of usual Log In and Log Out …Can you tell me how you achieved this.
Forum: Fixing WordPress
In reply to: the_category declarationHi i am new to wordpress i am trying to hook this function in the_category filter ny one help me out plz
add_filter(‘the_category’,’logu_cat_func’);
function logu_cat_func(){
$args = array(‘orderby’ => ‘term_group’, ‘order’ => ‘ASC’, ‘fields’ => ‘all’);
$terms = wp_get_object_terms($post->ID, ‘category’, $args );
$count = count($terms); $i=0;
if ($count > 0) {
$cape_list = ‘<p class=”my_term-archive”>’;
foreach ($terms as $term) {
$i++;
$term_list .= ‘slug . ‘” title=”‘ . sprintf(__(‘View all post filed under %s’, ‘my_localization_domain’), $term->name) . ‘”>’ . $term->name . ‘‘;
if ($count != $i) $term_list .= ‘ · ‘; else $term_list .= ‘</p>’;
}
echo $term_list;
}
}