• Resolved danielgroves

    (@danielgroves)


    Hi,

    I hvae a problem with a template that I am building, this is my first one, so please go easy on the Jargon, but all the same I need help.

    The Heading 2 title for the calendar does not appear how ever I do it. My code is below. To build this template I hvae been using the tuteral on wpdesigner.com

    <div class="sidebar">
    
    	<ul>
    		<?php if(function_exists('dynamic_sidebar') && dynamic_sidebar()) : else : ?>
    		<li id="search">
    			<?php include(TEMPLATEPATH . '/searchform.php'); ?>
    		</li>
    		<li id="calendar"><h2><?php _e('Calendar'); ?></h2>
    			<?php get_calendar(); ?>
    		</li>
    		<?php wp_list_pages('depth=2&title_li=<h2>Pages</h2>'); ?>
    		<li><h2><?php _e('Categories'); ?></h2>
    			<ul>
    				<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
    			</ul>
    		</li>
    		<li><h2><?php _e('Archives'); ?></h2>
    			<ul>
    				<?php wp_get_archives('type=monthly'); ?>
    			</ul>
    		</li>
    		<?php get_links_list(); ?>
    		<li><h2><?php _e('Meta'); ?></h2>
    			<ul>
    				<?php wp_register(); ?>
    				<li><?php wp_loginout(); ?></li>
    				<?php wp_meta(); ?>
    			</ul>
    		</li>
    		<?php endif; ?>
    	</ul>
    
    	</div>
  • The topic ‘Post Calendar’ is closed to new replies.