Ik ben op zoek naar een Plugin die net als op http://www.iphoneclub.nl/ na enkele posts een advententie weergeeft.
Ik heb wel al in de WordPress Plugin database gekeken maar daar word ik niet echt wijzer van.
Alvast bedankt.
- WordPress Ads plugin
-
18-11-2007, 14:51 #1
- Berichten
- 2.160
- Lid sinds
- 17 Jaar
WordPress Ads plugin
-
In de schijnwerper
Gezocht: .de backlink mogelijkheden op het gebied van zakelijk/drukwerkSEO/LinkbuildingHandmatige SEO + linkbuilding voor slechts 150 euro per maand!Freelance / WerkPromoot jouw bedrijf in Woerden!SEO/LinkbuildingOutreachxxl.com || Outreach/linkbuilding zelf doen? Internationaal. Laagste prijzenFreelance / Werk -
18-11-2007, 15:08 #2
- Berichten
- 236
- Lid sinds
- 18 Jaar
Misschien is dit wel iets: http://www.acmetech.com/blog/2005/07...dpress-plugin/
Wat je ook kunt doen is in index.php onder je berichten de code van je ads plaatsen.
-
18-11-2007, 19:26 #3
- Berichten
- 25
- Lid sinds
- 17 Jaar
Je had natuurlijk ook even direct contact met me kunnen opnemen :p
PHP Code:<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php $postcount=0; ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h1><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
<h4><img src="<?php bloginfo('template_directory'); ?>/images/calendar.png" align="top" alt="Date" /> <?php the_time('j F Y'); ?> <?php edit_post_link('edit', '', ' '); ?></h4>
<?php the_content("» Lees verder: " .get_the_title('', '', false)); ?>
<p class="postmeta"><img src="<?php bloginfo('template_directory'); ?>/images/tag.png" align="top" alt="Category" /> Geplaatst in <?php the_category(', ') ?> <img src="<?php bloginfo('template_directory'); ?>/images/comments.png" align="top" alt="Comments" /> <?php comments_popup_link('Geen reacties »', '1 reactie »', '% reacties »'); ?>
</p>
</div>
<?php
$postcount++;
if($postcount == 2){?>
<div style="margin:15px 0; text-align: center;">
<?php if(function_exists('adsensem_ad')) {adsensem_ad('banner486x60_tdblr');} ?>
</div>
<?php } else if($postcount<3){ ?>
<div style="margin:15px 0; text-align: center;">
<?php if(function_exists('adsensem_ad')) {adsensem_ad('banner486x60-home');} ?>
</div>
<?php } ?>
<?php endwhile; ?>
<?php else : ?>
<p><?php _e('Sorry, er zijn geen berichten die aan de criteria voldoen.'); ?></p>
<?php endif; ?>
</div>
<?php include (TEMPLATEPATH . '/sidebarRight.php'); ?>
<?php include (TEMPLATEPATH . '/sidebarleft.php'); ?>
<?php get_footer(); ?>
-
18-11-2007, 19:36 #4
- Berichten
- 2.160
- Lid sinds
- 17 Jaar
Jongens, jongens..
In mijn post zeg ik 'advententie' en 'ads' hoeft toch niet gelijk Google AdSense te zijn?
Ik wil gewoon een .png of .jpg bannertje die linkt ertussen kunnen gooien...
-
18-11-2007, 19:52 #5
- Berichten
- 236
- Lid sinds
- 18 Jaar
Dat kan met het stukje code van Jean-Paul ook ;)
-
18-11-2007, 20:01 #6
- Berichten
- 2.160
- Lid sinds
- 17 Jaar
Origineel gepost door Joey Prijs
Dat kan met het stukje code van Jean-Paul ook ;)
Waar moet ik de banner URL dan neerzitten en de link =$
-
18-11-2007, 20:36 #7
- Berichten
- 176
- Lid sinds
- 17 Jaar
Met de plugin die Joey aanhaalde kan je eender wat invoegen... ook .jpg of .png banners
-
18-11-2007, 20:45 #8
- Berichten
- 25
- Lid sinds
- 17 Jaar
Origineel gepost door Rian O.
Ik ben dus helemaal niet thuis in scripten daarom vraag ik er ook naar.. =')
Waar moet ik de banner URL dan neerzitten en de link =$
PHP Code:<div style="margin:15px 0; text-align: center;">
<?php if(function_exists('adsensem_ad')) {adsensem_ad('banner486x60_tdblr');} ?>
</div>
PHP Code:<div style="margin:15px 0; text-align: center;">
<a href="website.html"><img src="banner.jpg"></a>
</div>
-
03-10-2008, 18:13 #9
- Berichten
- 50
- Lid sinds
- 17 Jaar
duss... voor de duidelijkheid:
Code:<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : ?> <?php $postcount=0; ?> <?php while (have_posts()) : the_post(); ?> <div class="post"> <h1><a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1> <h4><img src="<?php bloginfo('template_directory'); ?>/images/calendar.png" align="top" alt="Date" /> <?php the_time('j F Y'); ?> <?php edit_post_link('edit', '', ' '); ?></h4> <?php the_content("» Lees verder: " .get_the_title('', '', false)); ?> <p class="postmeta"><img src="<?php bloginfo('template_directory'); ?>/images/tag.png" align="top" alt="Category" /> Geplaatst in <?php the_category(', ') ?> <img src="<?php bloginfo('template_directory'); ?>/images/comments.png" align="top" alt="Comments" /> <?php comments_popup_link('Geen reacties »', '1 reactie »', '% reacties »'); ?> </p> </div> <?php $postcount++; if($postcount == 2){?> <div style="margin:15px 0; text-align: center;"> <?php if(function_exists('adsensem_ad')) {adsensem_ad('banner486x60_tdblr');} ?> </div> <?php } else if($postcount<3){ ?> <div style="margin:15px 0; text-align: center;"> <a href="website.html"><img src="banner.jpg"></a> </div> <?php } ?> <?php endwhile; ?> <?php else : ?> <p><?php _e('Sorry, er zijn geen berichten die aan de criteria voldoen.'); ?></p> <?php endif; ?> </div> <?php include (TEMPLATEPATH . '/sidebarRight.php'); ?> <?php include (TEMPLATEPATH . '/sidebarleft.php'); ?> <?php get_footer(); ?>
-
17-10-2008, 13:17 #10
- Berichten
- 1.832
- Lid sinds
- 19 Jaar
en werkt het?
Plaats een
- + Advertentie
- + Onderwerp
Marktplaats
Webmasterforum
- Websites algemeen
- Sitechecks
- Marketing
- Domeinen algemeen
- Waardebepaling
- CMS
- Wordpress
- Joomla
- Magento
- Google algemeen
- SEO
- Analytics
- Adsense
- Adwords
- HTML / XHTML
- CSS
- Programmeren
- PHP
- Javascript
- JQuery
- MySQL
- Ondernemen algemeen
- Belastingen
- Juridisch
- Grafisch ontwerp
- Hosting Algemeen
- Hardware Info
- Offtopic