Quantcast
Channel: help – WordPress.org Forums
Viewing all articles
Browse latest Browse all 13924

purityofsin on "Error with website coding"

$
0
0

And this is the code where the error should be in:

<?php
/*
Template Name: Home Page
*/
?>

<?php get_header(); ?>

	<div id="main">
		<div id="slideshow">
			<?php shslideshow(); ?>
		</div>

		<div id="content">

			<?php if (have_posts()) : ?>
			<?php while (have_posts()) : the_post(); ?>

				<?php the_content(''); ?>

				<?php endwhile; ?>

		<?php endif; ?>

		<div id="slideshow">
			<?php shslideshow(); ?>

		</div><!--end content div-->

		<div id="leftWidget">
		<?php if ( !function_exists('dynamic_sidebar')
		|| !dynamic_sidebar('sidebar1') ) : ?>
		<?php endif; ?>
		</div>

		<div id="rightWidget">
		<?php if ( !function_exists('dynamic_sidebar')
		|| !dynamic_sidebar('sidebar2') ) : ?>
		<?php endif; ?>
		</div>

	<div style="clear:both;"></div>
	</div>

    <?php get_footer(); ?>

Viewing all articles
Browse latest Browse all 13924

Trending Articles