Onur89TR adlı üyeden alıntı
Dostum bunu slider döngüsünün içine atacaksın ki slider'daki tüm resimler için çalışsın. Yapıştır slider kodlarını buraya, yardımcı olayım.
Slider.php ş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>
Doğru mu bilmiyorum ama şu kod yerine başka birşey geleceğini düşünüyorum. Slider'da görünen resimler 600x250 olarak görünsün istiyorum.
Yardımınız için teşekkürler.