Link to home
Start Free TrialLog in
Avatar of jonathanduane2010
jonathanduane2010

asked on

editing a php so it has a sidebar

Hi guys,

I was wondering if i can edit a template i am using so it has a sidebar?  something similar to the sidebar here on another site i look after  www.bodyfirst.ie i have tried copying that template but it throws off everything else here is the code for the template i am using that i would like to put a sidebar on

<?php
// Template Name: Full Width Page
get_header(); ?>
		
		<?php
			
				if(have_posts()) 
					while(have_posts()): 
						the_post();
			?>	
		
		
		<?php if (function_exists('progression_breadcrumbs')) progression_breadcrumbs(); ?>
		
		
		<div class="content-container">
			
			
				
			<div class="page-content">
				
				<?php
				if($post->post_parent) {
					$children = wp_list_pages('sort_column=menu_order&title_li=&child_of=' . $post->post_parent . '&depth=1&echo=0');
				}
				else {
					$children = wp_list_pages('sort_column=menu_order&title_li=&child_of=' . $post->ID . '&depth=1&echo=0');
				}

				if ($children) { ?>
				
				<ul class="sub-pagination">
					<?php if($post->post_parent): ?>
					<li><a href='<?php echo get_permalink($post->post_parent); ?>'><?php echo get_the_title($post->post_parent); ?></a></li>
					<?php else: ?>
					<li class="current_page_item"><a href='<?php echo get_permalink($post->ID); ?>'><?php echo get_the_title($post->ID); ?></a></li>
					<?php endif; ?>

					<?php echo $children; ?>
				</ul>
				<?php } else { ?>

				<?php } ?>
				

					<h1 class="page-title"><?php the_title(); ?></h1>
					
					
					<?php the_content(); ?>
					
					
					<div class="clearfix"></div>
					
					

				
				
				
				

				
				
				
				
			
			</div><!-- close .page-content -->
			
			
			</div><!-- close .sidebar-container -->
			
			
		</div><!-- close .content-container -->
		<div class="content-container-base">
		</div><!-- close .content-container-base or .content-container-base-pagination -->
		
		
	<?php
				endwhile;
			?>
	
<?php get_footer(); ?>

Open in new window

Avatar of Gary
Gary
Flag of Ireland image

Does the template not include a 2 col page?
Got a link to the page.
Avatar of jonathanduane2010
jonathanduane2010

ASKER

maybe it does i never checked :)

yes its http://dancingsoul.greatlocks.ie/
Is this just on the homepage, since other pages do have a sidebar
yes they have a right side bar i am looking for a left one if possible.. or i suppose it doesnt make a difference
Well you've already changed it.
You could just change the floats around.
how do i do that?
Ok, i found it, can i change the background so it isnt grey its white like the rest of the page?
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial