WordPress-Hack: Werbung unter dem ersten Posting anzeigen
Twittern
Um nach dem ersten Posting Werbung anzuzeigen braucht man in der Template-Datei index.php folgenden Code einfügen (alter Code muss überschrieben werden):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | <?php if (have_posts()) : ?> <?php $count = 0; ?> <?php while (have_posts()) : the_post(); ?> <?php $count ; ?> <?php if ($count == 2) : ?> HIER WERBECODE EINBINDEN <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> <?php else : ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_excerpt(); ?> <?php endif; ?> <?php endwhile; ?> <?php endif; ?> |
via wpbeginner





