no content will show up on the page, and i’ve triple checked the code and category id’s… any ideas?
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
/*
Template Name: Name of Author Page
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="contentleft">
<h1>Author Name</h1>
{WILL DISPLAY PICTURE AND QUICK BIO HERE}<br /><br />
<?php query_posts('cat=41'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
</div>
<?php include(TEMPLATEPATH."/l_sidebar.php");?>
<?php include(TEMPLATEPATH."/r_sidebar.php");?>
</div>
<!-- The main column ends -->
<?php get_footer(); ?>