Hallo,
ich habe mir unter Sneakfilm.de eine Seite mit dem Stucco-Theme erstellt und dafür folgendes Template angelegt:
PHP
<?php
/*
Template Name: SneakDB
*/
?>
<?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!-- <?php the_date('','<h2>','</h2>'); ?> -->
<div class="post">
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><center><?php the_title(); ?></center></a></h3>
<div class="meta"><?php edit_post_link('Edit'); ?></div>
<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?>
<?php get_footer(); ?>
Alles anzeigen
Mein Problem ist, dass am Ende noch "Tag" erscheint. Das möchte ich unterdrücken. Nur weiß ich nicht wie.
Danke
Michael