Beiträge von worldwings

    Das Theme

    Hallo

    Danke für Eure schnellen Antworten!

    Das Theme heisst "RockinNewspaper 3Col 1"

    In der Index Datei befindet sich folgender Code für den Beitragstitel :

    PHP
    <!--post title as a link-->
        <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanenter Link zu <?php the_title(); ?>"><?php the_title(); ?></a></h2>
     <p><b>Von <?php the_author(); ?></b> | <?php the_time('j.F Y'); ?> </p>
      <div class="postspace2">
     </div>



    Würde das so funktionieren :

    PHP
    <!--post title as a link-->
    <h2><?php the_title() ?></h2> 
    <p><b>Von <?php the_author(); ?></b> | <?php the_time('j.F Y'); ?> </p>
    <div class="postspace2">
    </div>