Breaking News php code help

HI, i’m working on a code for my site to produce a breaking news segment on our wordpress website, unfortunately it’s not working, can you spot any errors?

here is what I made:

[php]

<?php $recent = new WP_Query("cat=3&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <?php //if the post is younger than a day, display the BREAKING NEWS $today = getdate(); $today_date = $today['mday']; $post_date = get_the_date( 'j'); if( $today_date == $post_date) : ?>
<div class="featured">
	<div class="content">
		<div class="sm-w">
			<h1>BREAKING NEWS</h1>
			<div class="clear"></div>
		</div>
		<div class="breaking_content">
			<div class="fpost">
	 			<h2><a href="<?php the_permalink() ?>" rel="bookmark">
	 			<?php the_title(); ?></a></h2>
	 			<?php the_content(); ?>
	 		</div>
		</div>
	</div>
	<div class="clear"></div>
</div>
<div class="featured-footer"></div>
<span class="docomment">&nbsp;</span>
<div class="clear"></div>
<?php endif; ?> <?php endwhile; ?> [/php]

How is it “Not Working?” Are there any errors? If so what are they?

Sponsor our Newsletter | Privacy Policy | Terms of Service