Wow, I thought this thread was lost in the oblivion of the forum archives. Thanks a bunch guys!
So, timc, yes, our problem is the same. I have tried following your tip, but as I don't know much about php, I didn't get far. But it inspired me, and after a -lot- of experimenting (mostly trial and error), I managed to solve the problem! (see lepied.littfra.com for result, under any category (it's in french)) The code is probably very ugly for someone who knows what they're doing, but it works fine for me, let me share it:
I edited pullout.php, and added, right after the call for tags, this code:
- Code: Select all
if ($post_show_tags != 'hide') {
$auteur = get_the_terms($post->ID, $auteur);
if ($tags != '') {
echo "<li><span class=''><span class='icon'> </span>";
the_terms( $post->ID, 'auteur');
echo "</span></li>\n";
It is obviously a pasted and modified version of the code for displaying tags. Now it works quite well, so yeah, good. Except it seems a little bit buggish. I think I understand the problem, but I'll be damned if I know how to solve them.
1-If a post is not tagged, the following taxonomies won't display. I suppose the code tells Wordpress not to display a tag if there is none available, hence also hiding other taxonomies labelled here as tags. Also, the "cheat" seems only to work under the "if ($post_show_tags != 'hide')" header for, I believe, aproximately the same reason.
2-Clicking on a taxonomy leads me to a page of taxonomies, as excepted, but showing the whole posts. I'd rather have only excerpts, but there is no setting to this effect in the suffusion options.
3-(un)Relatedly, I'd like to let all my "pages of X" (tags, cats, tax., etc.) show more than 10 posts. Ideally, to show all posts. How should I proceed?
And, if you're feeling generous, how should I proceed to make "index" pages, showing alphabetically all tags, or categories, or taxonomies, or post titles, without any excerpt?
Thanks for the help.