Why are most of you being such selfish
-
I asked few questions already by starting new topics. And I havent got a single response to any of them. I feel like most of you here to help yourselves not others.
I figured out issues with my blog the hard way, it took me alot longer but got it done. The only thing Im asking right now to help me add the second sidebar to my theme. I followed all the steps in this article https://www.blogohblog.com/adding-extra-sidebar-to-your-wordpress-theme/
Everything works, except…I cant place the side bar in the right place. I need to place this code somewhere in index.php, so it will show up on the left. Can someone tell me where? I already tried every single line i that code, but nothing.
<div id="sidebar-left"> <?php include (TEMPLATEPATH . '/sidebar-left.php'); ?> </div>
index.php
<?php get_header(); ?> <?php trackTheme("Smilies-Army"); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="date"><span><?php the_time('M') ?></span> <?php the_time('d') ?></div> <div class="title"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="postdata"><span class="category"><?php the_category(', ') ?></span> <span class="comments"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span></div> </div> <div class="entry"> <?php the_content('Continue reading »'); ?> <p class="submeta">written by <strong><?php the_author(); ?></strong> <?php if(function_exists("the_tags")) the_tags('\\\\ tags: ', ', ', '<br />'); ?> </p> </div><!--/entry --> </div><!--/post --> <?php endwhile; ?> <div class="page-nav"> <span class="previous-entries"><?php next_posts_link('Previous Entries') ?></span> <span class="next-entries"><?php previous_posts_link('Next Entries') ?></span></div><!-- /page nav --> <?php else : ?> <h2>Not Found</h2> <p>Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> </div><!--/content --> <?php get_footer(); ?> </div><!--/left-col --> <?php $current_page = $post->ID; // Hack to prevent the no sidebar error include_once("sidebar-right.php"); ?> <?php get_footer(); ?>
I am using smilies army theme, if that helps. thanks
- The topic ‘Why are most of you being such selfish’ is closed to new replies.