Hi, I'm trying to find the proper function to get my entry meta to show up. So far I've been able to get my excerpt, the_post_thumbnail and entry-title, but have a hard time finding the proper function for the rest. Can you help?
I'm totally new to PHP so forgive me if I'm missing any relevant information.
Thanks, code below
<div id="container">
<?php thematic_abovecontent(); ?>
<div id="content">
<?php
// displays the page title
thematic_page_title();
// create the navigation above the content
thematic_navigation_above();
// action hook for placing content above the index loop
thematic_above_indexloop();
// action hook creating the index loop
//thematic_indexloop();
query_posts('&cat=3');
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="post">
<h2 class="entry-title"> "rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> <?php the_title();?></h2>
<div class="entry-content">
<div class="wp-post-image">
<?php the_post_thumbnail(); ?>
</div>
<?php the_excerpt(); ?>
</div>
<div class="entry-meta">
<?php add_meta_box(); ?>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif;
// action hook for placing content below the index loop
thematic_below_indexloop();
// create the navigation below the content
thematic_navigation_below();
?>
</div><!-- #content -->
<?php thematic_belowcontent(); ?>
</div><!-- #container -->