Hi,
ich habe mal eine Frage. Kann man das irgendwie Einstellen, dass der Google Adsense Code von Automatisch kommt, oder muss man den immer bei den News hinschreiben?
Hier der PHP Code für einen Einzelnen Artikel(Vielleicht kann man da ja was ändern)
PHP
<?php get_header(); get_sidebar(); ?>
<!-- BEGIN content -->
<div id="content">
<?php
if (have_posts()) : the_post();
?>
<!-- begin latest -->
<div class="contenttop"> </div>
<div class="latest"><div class="la">
<div class="head">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p>Posted by <?php the_author_posts_link(); ?> - <?php the_time('j F Y') ?></p>
</div>
<?php the_content(''); ?>
<p class="details">Kategorie: <?php the_category(', ') ?>. <?php the_tags( 'Tags: ', ', ', '.'); ?> </p>
</div></div>
<!-- end latest -->
<div class="contenttop"> </div>
<div class="latest"><div id="Kommentare" class="la">
<?php comments_template(); ?>
</div></div>
<?php endif; ?>
<?php include('tagcloud.php'); ?>
</div>
<!-- END content -->
<?php get_footer(); ?>
Alles anzeigen