Hallo WP-Gemeinde und im speziellen die PHP Profis.
Leider hat die Suche und Stunden Arbeit nichts gebracht.
Jetzt seh ich den Wald vor lauter Bäumen nicht mehr.
Ich möchte mein Archiv NICHT als Liste ausgeben. Die Artikel sollen bis zum "Read more" Link ausgegeben werden.
mein Archiv sieht so aus
PHP
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h1 class="pagetitle"> <?php printf(__ ('Beiträge aus dem Bereich %s', 'titan'), single_cat_title("", false))?>
</h1>
<?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
<h1 class="pagetitle"><?php printf(__ ('Beiträge markiert ‘%s’', 'titan'), single_tag_title("", false))?></h1>
<?php /* If this is a daily archive */ } elseif (is_day()) { ?>
<h1 class="pagetitle"><?php _e('Archiv für', 'titan') ?> <?php the_time(__ ('d. M Y', 'titan')) ?></h1>
<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
<h1 class="pagetitle"><?php _e('Archiv für', 'titan') ?> <?php the_time(__ ('d. M Y', 'titan')) ?></h1>
<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
<h1 class="pagetitle"><?php _e('Archiv für', 'titan') ?> <?php the_time(__ ('Y', 'titan')) ?></h1>
<?php /* If this is an author archive */ } elseif (is_author()) { if (isset($_GET['author_name'])) $current_author = get_userdatabylogin($author_name); else $current_author = get_userdata(intval($author));?>
<h1 class="pagetitle"><?php printf(__ ('geschrieben von %s', 'titan'), $current_author->nickname)?></h1>
<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
<h1 class="pagetitle"><?php _e('Blog Archives', 'titan') ?></h1>
<?php } ?>
<?php while (have_posts()) : the_post(); ?>
<div class="entries">
<ul>
<li><span><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php printf(__ ('%s geschrieben am ', 'titan'), get_the_title()) ?></a> <?php the_time(__ ('d. M Y', 'titan')) ?></span></li>
</ul>
</div><!--end entries-->
<?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__ ('« Older Entries', 'titan')) ?></div>
<div class="alignright"><?php previous_posts_link(__ ('Newer Entries »', 'titan')) ?></div>
</div><!--end navigation-->
<?php else : ?>
<?php endif; ?>
</div><!--end content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
Wer kann mit der Axt mal reingenen und mir einen kleinen Tip geben.
Ich möchte das Theme gern behalten wiel ich Tage Arbeit reingesteckt habe.
:confused: