davideberle
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [WP LinkedIn] GnuTLS recv error (-9)Thx Claude – but it still doesn’t work… What else could I do? Best, David
Forum: Plugins
In reply to: Display category list with class numberingI got it, see below:
<div id="recentposts"> <p class="listing"> <?php $categories = get_categories('exclude=1&orderby=ID'); foreach($categories as $key => $category) { ?> <a class="recent<?php echo $key; ?>" href="<?php echo get_category_link($category->term_id); ?>"><?php echo $category->name; ?></a> <?php } ?> </p> </div>Forum: Plugins
In reply to: Display category list with class numberingyes, thank you. now that’s working.
the last thing that’s left is the link issues. still no link… here the updated code:
<div id="recentposts"> <p class="listing"> <?php $categories = get_categories(); foreach($categories as $key => $category) { ?> <a class="recent<?php echo $key; ?>" href="<?php echo get_category_link($category->name); ?>"><?php echo $category->name; ?></a> <?php } ?> </p> </div>Thanks a lot for the help!!
Forum: Themes and Templates
In reply to: Adapt Header to match Websitethx a lot. you saved my day 🙂
Forum: Fixing WordPress
In reply to: 2 Blogs?great, thanks a lot! i think author templates looks as THE thing. I’ll look into it. great, many thx!
Viewing 5 replies - 1 through 5 (of 5 total)