Hallo,
wie stelle ich es an, dass der ausdruck mit datum und wer es gepostet hat entfernt wird?
Hier mal meine index.php
PHP
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<p class="meta"> <?php the_author() ?> - <?php the_time('F jS, Y') ?></p>
<div class="entry">
<?php the_content('Read More »'); ?>
</div>
<?php if(!is_home() || !is_front_page()) { ?>
<p class="postmetadata">Posted in <?php the_category(', ')
?> | <?php edit_post_link('Edit', '', ' | '); ?>
<?php } ?><?php
comments_popup_link('No Comments »', '1 Comment »', '% Comments »');
?></p>
</div>
<?php endwhile; ?>
<p align="center"><?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?></p>
<?php else : ?>
<h2 align="center">Not Found</h2>
<p align="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif; ?>
</div>
<?php
get_sidebar();
get_footer();
?>
Alles anzeigen
Habe mich echt todgesucht aber nichts gefunden :-(