Merhabalar ;
Wordpress sitemde konu içerisinde başlığın hemen altında 468*60 adsense reklamı koymak istiyorum.
"Single.php" açtım fakat reklam kodunu yerleştirmek için uygun bi yer bulamadım. Rastgele koydum , siteye baktım çok saçma yere yerleşmiş reklam.
Ne işe yaradığını bilmediğim birkaç şablon daha var ;
"aboutortweet.php" , "item.php" , "missing.php" , "navigation.php" , "page-item.php"
Bunlardan hangisine yerleştirmeliyim reklam kodunu ?
Siteye reklam koyamıyorum!
6
●351
- 24-10-2009, 19:58:16yapılır single.php yi düzenlemeniz lazım..Beowulf78 adlı üyeden alıntı: mesajı görüntüle
temalara göre nereye yerleştireceniz değişebilir kodlarda.. - 24-10-2009, 20:02:41Üyeliği durdurulduSingle.php ;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <?php $options = get_option('wg_options'); ?> <?php get_header(); ?> </head> <body> <div id="wrapper"> <?php include(TEMPLATEPATH . "/banner.php"); ?> <?php include(TEMPLATEPATH . "/menu.php"); ?> <div id="content"> <?php include(TEMPLATEPATH . "/leftsidebar.php"); ?> <div class="container"> <ul class="posts"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <li> <?php include (TEMPLATEPATH . "/item.php"); ?> <?php if (function_exists('wp_list_comments')): ?> <!-- WP 2.7 and above --> <?php comments_template('', true); ?> <?php else : ?> <!-- WP 2.6 and below --> <?php comments_template(); ?> <?php endif; ?> </li> <?php endwhile; ?> <?php else : ?> <li> <?php include (TEMPLATEPATH . "/missing.php"); ?> </li> <?php endif; ?> </ul> </div> <?php include(TEMPLATEPATH . "/rightsidebar.php"); ?> </div> <?php get_footer(); ?> </div> </body> </html>Nereye yerleştiriyim reklam kodunu ? - 24-10-2009, 20:05:25yazının altına reklam koymak istiyorsanız
<div class="container">
<ul class="posts">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
kodlarının altına reklam kodlarınızı yerleştirip dener misiniz?
bu benim düşüncem yapmak zorunda değilsiniz.Sitenizin yedeklerini alın.