Einzelnen Beitrag anzeigen
Alt 15.06.2008, 02:30   #7 (permalink)
codestyling
WPD-Team
 
Benutzerbild von codestyling
 
Registriert seit: 30.03.2008
Ort: Leipzig
Beiträge: 1.133
Original ist ok, wenn es Royal Blue ist, wie im ersten Post zu vermuten ist (page.php)
PHP-Code:
<?php get_header(); ?>
<div id="wrapper">
    <div id="content">

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <div class="post" id="post-<?php the_ID(); ?>">
        <h2><?php the_title(); ?></h2>
            <div class="entrytext">
                <?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
    
                <?php link_pages('<p><strong>Pages:</strong> ''</p>''number'); ?>
    
            </div>
        </div>
      <?php endwhile; endif; ?>
    <?php edit_post_link('Edit this entry.''<p>''</p>'); ?>
    </div>

<?php get_sidebar(); ?>
</div>
<?php include (TEMPLATEPATH "/sidebar2.php"); ?>

<?php get_footer(); ?>
__________________
It's not a bug, it's always a feature. | Code Styling
codestyling ist offline   Mit Zitat antworten