moderno
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sort Posts by CategoryThanks for the advice Ipstenu! I’ll take a look at that plugin, and then I’ll try writing my own for each loop. I’ll post here any advance!
Forum: Plugins
In reply to: Anyone Using Related Post with Thumbnail Plugin?Anyone had any chance making this great plugin work with WP 2.5 ?
Forum: Fixing WordPress
In reply to: Post Thumbnail LinkDid you manage to do this ?? Im trying to do the same thing!
Forum: Fixing WordPress
In reply to: Need help opening thumbnails in posts.What he wants to do is that when you click on the thumbnail to take you directly to the post, instead of the page or the jpg! Im looking for something similar to this, but also to be able to control the size of the thumbnail displayed, and then inside the post be able to see the whole picture!
Forum: Plugins
In reply to: List Categories with an image instead of category title!I found a way to do this without using any plugin. I just used This Article
mixed with this This Article
to get some code like this one:
<?php foreach((get_categories('exclude=1,4,6,7')) as $cat) { echo '<a href="http://example.com' . $cat->category_nicename . '"><img src="http://example' . $cat->category_nicename . '.png" width="178" height="28" alt="' . $cat->cat_name . '" /></a> '; } ?>So with this code, we can display a picture for the category that links to its category page, instead of showing the category’s title and the typical link.
Hope it helps!
Forum: Plugins
In reply to: List Categories with an image instead of category title!yeah, ive already tried that plugin, but it only works within the loop, so its not going to help me 🙁