Zu 1. Sorry. Habe nicht darauf geachtet.
2. Ich will den Artikel ja gerade NICHT abschneiden. Im Quellcode des Artiekls steht nirgends der Tag.
3. Hab ich schon gesehen nur existiert im gesamten Theme kein einziges mal die Befehlszeie "the_excerpt" von daher bin ich ja grade ratlos warum er mir meine Artikel automatisch kürzt auf der Startseite.....
Kennst sich denn niemand damit aus? :confused:
Ich hab nun folgende im index.php des themes gefunden:
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php print character_limiter($post->post_content,650); ?> <a href="<?php the_permalink() ?>">Read More</a>
</div>
<p class="postmetadata meta-home"><a href="<?php bloginfo('rss2_url'); ?>" class="rss">Subscribe via RSS</a><span class="comment-link"><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></span><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?></p>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Alles anzeigen
In der pasage " <div class="entry">
<?php print character_limiter($post->post_content,650); ?> <a href="<?php the_permalink() ?>">Read More</a>
</div>" wird das read more angezeigt, kann mir eventuell jemand sagen wir ich das ergänzen/ersetzen muss damit er mir die Artikel nicht mehr abschneidet?