Quantcast
Channel: WordPress.org Forums » All Posts
Viewing all articles
Browse latest Browse all 96034

Ryan Sigler on "A little PHP ?"

$
0
0

here is the link to the page: http://holepunchstudios.com/?p=454

I want the comments to be below my image. Hell, i don't even need the comments really.
Im not a programmer so figuring this one out has been a bit tough. I know its in the single.php file but not sure exactly how to move the code around. please help.

Here is the current code:

<?php get_header(); ?>
	<div id="single_cont">

		<div class="single_left">

			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
				<h1 class="single_title"><?php the_title(); ?></h1>
				<div class="single_inside_content">
				<?php the_content(); ?>
				</div><!--//single_inside_content-->

<hr>
				<?php comments_template(); ?>
			<?php endwhile; else: ?>
				<h3>Sorry, no posts matched your criteria.</h3>
			<?php endif; ?>                    

		</div><!--//single_left-->

		<?php get_sidebar(); ?>

		<div class="clear"></div>

	</div><!--//single_cont-->

<?php get_footer(); ?>

[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum's parser.]


Viewing all articles
Browse latest Browse all 96034

Trending Articles