Sitemde bir slider kullanıyorum ve sadece bir kategorideki yazılar Slider'da görünsün istiyorum. Slider.php içindeki kodlar şu şekilde:

					<div class="slider">
					

				<div id="slider4" class="sliderwrapper">
										
				<?php 	
				$query = new WP_Query();
				$query->query(array('posts_per_page' => 7));
				if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); 
				?>
										
				<?php $id =$post->ID;

	$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
	$pattern = '!<img.*?src="(.*?)"!';
	preg_match_all($pattern, $the_content, $matches);
	$image_src = $matches['1'][0];?>
	
				<div class="contentdiv" style="background: url(<?php echo $image_src; ?>) center left no-repeat">
				<div class="conttitle"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
				</div>
				<?php endwhile; endif; wp_reset_query(); ?>			
				</div>
						

				<div id="paginate-slider4" style="background:white">
										
				<?php 	
				$query = new WP_Query();
				$query->query(array('posts_per_page' => 7));
				if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post(); 
				?>

				<?php $id =$post->ID;

	$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
	$pattern = '!<img.*?src="(.*?)"!';
	preg_match_all($pattern, $the_content, $matches);
	$image_src2 = $matches['1'][0];?>

				<a href="<?php the_permalink(); ?>" class="toc"><img alt="<?php the_title(); ?>" src="<?php echo $image_src2; ?>" /></a> 
										
				<?php endwhile; endif; wp_reset_query(); ?>	
				</div>
										
				<script type="text/javascript">

			        featuredcontentslider.init({
				id: "slider4", 
				contentsource: ["inline", ""], 
				toc: "markup", 
				nextprev: ["", "Next"],  
				revealtype: "mouseover",  
				enablefade: [true, 0.1],  
				autorotate: [true, 4000],  
				onChange: function(previndex, curindex){  
				}
				})

				</script>
					
					</div>
Bu konuda yardımcı olabilecek var mı acaba?
Sanırım query kısımlarında küçük bir değişiklik yapmak istiyorum ama yapamadım.