Merhaba arkadaşlar. Anasayfa ile alakalı birkaç adet kod isteğinde bulunacağım. Bilgili olan arkadaşlar yardım ederlerse çok sevinirim.
Soru ; Anasayfada baştan aşağı 5 adet konu görüntüleniyor. İlk 3 konuya resim modunda google reklamı yerleştirdim diyelim. Geri kalan son 2 konuya da normal konu ile alakalı kendim resim eklemek istiyorum diyelim. Şimdi, ilk 3 konuda reklamlar görüntülenir sorun yok fakat son 2 konu için konu içeriği ile ilgili resimleri nasıl gösterebilirim anasayfada? Yani, her konuda bir adet google reklamı olacak. Tabi bu ilk 3 konu için. Son 2 konu için de içeriğe resim ekleyeceğim ve son 2 konuda bu resimleri nasıl göstereceğim?
Birkaç Adet Kod İsteği
8
●473
- 03-02-2010, 23:17:46Hocam kafam biraz güzel o yüzden kısaca yöntemi anlatıyım
(alkolden dolayı k.bakmayın)
İlk konuya showpost=3 le ilk 3 konuyu listeleyin ve adsense temanızı koyun..Ardındaki 2 konuyada showpost=3&offset=3 sayesinde ilk 3 konuyu iptal edin..ardındaki 2 konu gelsin..
offset kullanımı ve showpost kullanımıyla ilgili google da bi araştır. - 03-02-2010, 23:22:07anarschi benide al yanına beraber kafa bulalım

Tesekkurler bu arada - 03-02-2010, 23:41:19KaPTaN adlı üyeden alıntı: mesajı görüntüle
<?php $recent = new WP_Query("showposts=3"); while($recent->have_posts()) : $recent->the_post();?> <div class="anasayfayazican"> reklam kodunu koy <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php excerpt('18'); ?> </div> <?php endwhile; ?> <?php $recent = new WP_Query("showposts=2&offset=3"); while($recent->have_posts()) : $recent->the_post();?> <div class="anasayfayazican"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php excerpt('18'); ?> </div> <?php endwhile; ?>excerpt kodunu benim temadan kopyaladım onu contentle değiştirirsin. - 04-02-2010, 00:24:22KaPTaN adlı üyeden alıntı: mesajı görüntüle
index.php nizi buraya eklermisiniz hocam? - 04-02-2010, 02:17:47Tabi ki. index.php aşağıdadır.anarschi adlı üyeden alıntı: mesajı görüntüle
<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post"> <div class="title"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <?php the_tags( ' <p class="small"><i>Etiketler:</i> ', ', ', '</p> '); ?> </div> <div class="entry"> <?php the_content('<p>Devamını oku »</p>'); ?> </div> </div> <?php endwhile; ?> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div> <? } ?> <?php else : ?> <div class="page" > <h2>Rats... Whatever You Were Looking For Isn't Here!</h2> <div class="entry"> <p>Sadly, the page that you thought was here ( or used to be here ) is not here anymore. Please hop back to our <a href="<?php echo get_option('home'); ?>">Home Page</a> or try using the search area off to the right to find what you were looking for.</p> </div> </div> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
(alkolden dolayı k.bakmayın)