need help in custom template
-
I want to make wordpress page template with sidebar in wordpress,please tellme how to do that ,I want to make it on
my website https://myinvestorsnetwork.com,I am using this code ..what what is happening it is now showing sidebar
with archive …please look at this ..any help would be appreciated
<?php
/*
Template Name: Archives with Content
*/
?><?php get_header(); ?>
<div id=”content” class=”widecolumn”>
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<div class=”post”>
<h2 id=”post-<?php the_ID(); ?>”><?php the_title();?></h2>
<div class=”entrytext”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ‘<p>’, ‘</p>’); ?></div>
<div id=”main”><?php get_sidebar(‘archive’); ?>
</div>
<?php get_footer(); ?>
- The topic ‘need help in custom template’ is closed to new replies.