Hmm. I seem to be over complicating this for myself. Basically, I need to just change this chunk of code:
Code:
<?php if(have_posts()) { ?>
<h2 class="page-title"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a><?php wp_title(); ?></h2>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(180,240), array('alt' => get_the_title(), 'title' => '')); ?></a>
<div class="link"><a href="<?php the_permalink() ?>"><?php short_title('...', '26'); ?></a></div>
<span>Added: <?php the_time('F j, Y'); ?></span>
<span><?php
$model_list = get_the_term_list( $post->ID, 'model', 'Model: ', ', ', '' );
// Output taxonomy information if there was any
if ( '' != $model_list ) {
echo $model_list;
} // endif
?></span>
This is what causes the pages to display the posts. Basically, I just need to change it so that it brings up each model instead of each post - snagging a picture with the same name as the term slug from a folder, and displaying the models name underneath. I can go through and work all the css after that.
I appreciate the assistance. It's tough, I know what I intend to do, I just don't know the proper terms to research to figure out how it's done.