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:
$query = new WP_Query();
$query->query(array('posts_per_page' => 7));
if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post();
?>
ID;
$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
$pattern = '!
preg_match_all($pattern, $the_content, $matches);
$image_src = $matches['1'][0];?>
$query = new WP_Query();
$query->query(array('posts_per_page' => 7));
if ($query->have_posts()) : while ($query->have_posts()) : $query->the_post();
?>
ID;
$the_content =$wpdb->get_var("SELECT post_content FROM $wpdb->posts WHERE ID = $id");
$pattern = '!
preg_match_all($pattern, $the_content, $matches);
$image_src2 = $matches['1'][0];?>
<script>
featuredcontentslider.init({
id: "slider4",
contentsource: ["inline", ""],
toc: "markup",
nextprev: ["", "Next"],
revealtype: "mouseover",
enablefade: [true, 0.1],
autorotate: [true, 4000],
onChange: function(previndex, curindex){
}
})
</script>
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.