thrillhouse900
Member
Posted 1 year ago #
I'm trying to rebuild my site with wordpress. Doing my portfolio list, coming along good, but I am stumped with how I should go about a couple things.
My Goal
http://www.rennervfx.com/project_shift.php
Where I am at now
http://rennervfx.com/blog/project/shiftrebrand
I've been using custom fields to do a few things, but how should I go about doing the applications list with a fancy logo for each? I am stumped.
Also is there a good way to list relevant links for each post? Like I say, I have a faily okay understanding of WP, but I am stumped on how to tackle these.
George
thrillhouse900
Member
Posted 1 year ago #
I've set the links to be just a bunch of custom tags, even though its a bit of a pain.
Any idea if I can link a bunch of checkboxes to adding a big of html? :S
thrillhouse900
Member
Posted 1 year ago #
So I've got all the applications under tags, using a get_tags to display the list of tags for each project. Only trouble is its returning 5 or 6 extra tags that aren't in the post, but not all of the tags. Any ideas?
The code I'm using is
foreach ($tags as $tag){
$imagename = str_replace(' ', '-', $tag->name);
$html .= "<div class='projcolumn_textlist'><img src='http://rennervfx.com/blog/wp-content/themes/RennerTheme/taglogo/{$imagename}_16.jpg' alt=''>";
$html .= "{$tag->description} {$tag->name}</div>";
}
echo $html;
?>
Any ideas? I am really baffled about how this returns about half my tags, but not all of them...