Part of your code:
Code:
<div id="page-wrap">
<div class="content">
//this is in index.php, single.php, page.php and so on
<div class="leftside-content">
//the loop here
</div>
//and this is in the footer.php file
</div>
<?php get_sidebar(); ?>
<div id="footer">
<center>©<?php echo " "; bloginfo('name'); echo " "; echo date("Y"); ?><br/>
<?php bloginfo('name'); ?>* is created, written by, and maintained by **********. It is built on <a href="http://www.wordpress.org" target="_blank">WordPress</a> and hosted by *******. </center>
</div>
</div>
Your code with my comments this:
Code:
<div id="page-wrap">
<div class="content">
//this is in index.php, single.php, page.php and so on
<div class="leftside-content">
//the loop here
</div><!-- End leftside-content -->
//and this is in the footer.php file
</div><!-- End content -->
<?php get_sidebar(); ?>
<div id="footer">
<center>©<?php echo " "; bloginfo('name'); echo " "; echo date("Y"); ?><br/>
<?php bloginfo('name'); ?>* is created, written by, and maintained by **********. It is built on <a href="http://www.wordpress.org" target="_blank">WordPress</a> and hosted by *******. </center>
</div><!-- End Footer -->
</div><!-- End page-wrap -->
I think you need to do something like this:
Code:
<div id="page-wrap">
<div class="content">
//this is in index.php, single.php, page.php and so on
<div class="leftside-content">
//the loop here
</div><!-- End leftside-content -->
//and this is in the footer.php file
</div><!-- End content -->
<?php get_sidebar(); ?>
</div><!-- End page-wrap -->
<div id="footer">
<center>©<?php echo " "; bloginfo('name'); echo " "; echo date("Y"); ?><br/>
<?php bloginfo('name'); ?>* is created, written by, and maintained by **********. It is built on <a href="http://www.wordpress.org" target="_blank">WordPress</a> and hosted by *******. </center>
</div><!-- End Footer -->
Bookmarks