Possibility:
<?php
$posts=get_posts('showposts=100000');
if ($posts) {
foreach($posts as $post) {
setup_postdata($post);
?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php
the_category();
}
}
?>
Thanks the reply! That works out perfectly. Just 1 more question.. how can I style the category links to display inline?
Something like this…
Post Title >>>>>>>>>>>>>>>>>>>>>>>>Category 1, Category 2, Cat 3
Making the categories right aligned to the post title. Imagine the carrots aren’t there. Thanks again for the quick response!
been messing with CSS, and I understand how CSS works. I’m having trouble seperating the title from the Archives when I put a ‘,’ the_category draw. That makes everything on “one line” but it’s not separated and it’s not CSS.
Any hints as how to make this work? My site I’m working on currently is markmalta.com/portfolio. Excuse my markup – I haven’t cleaned it yet, nor have I got half the design implemented. Again, I’m trying to get the title / categories to align left / right of eachother on a single line, followed by the next line seperated by a bottom border.
Thanks for the help!
Hi again. Sorry for the bump. I did get the styling figured out for safari / firefox but it’s not right (at all) in IE.
Can someone take a quick look and tell me if they think there is a better sololution?
markmalta.com/portfolio
the section below “ALL WORK” View in firefox or safari for correct formatting.