Einzelnen Beitrag anzeigen
Alt 02.02.2008, 14:29   #5 (permalink)
ALiEn
PostRank: 1
 
Benutzerbild von ALiEn
 
Registriert seit: 14.08.2007
Beiträge: 47
ah danke! Mit nur $more auf 0 gesetzt funktioniert es auch schon
PHP-Code:
    <?php if (have_posts()) : ?>
    
        <?php while (have_posts()) : the_post(); ?>
        <?php $more 0?>    
            <?php the_content(''); ?>
        <?php endwhile; ?>
        
        .....
        
        <?php while (have_posts()) : the_post(); ?>
               <?php the_content(''TRUE); ?>    
        <?php endwhile; ?>        
 
     <?php endif; ?>
ALiEn ist offline   Mit Zitat antworten