Hi zusammen,
ich möchte auf meiner Startseite, also index.php von WP nur Links zu den Posts anzeigen lassen, nach dem Muster von: the-device.net » sexy pics, lustige bilder, coole videos, easter eggs
PHP
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="postinfo">
<div class="calborder">
<div class="cal">
<span class="cald<?php echo (get_option('mandigo_dates') ? ' cald2' : '') ?>"><?php the_time((get_option('mandigo_dates') ? 'M' : 'd')) ?></span>
<span class="calm"><?php the_time((get_option('mandigo_dates') ? 'd' : 'm')) ?></span>
<span class="caly"><?php the_time('Y') ?></span>
</div>
</div>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s','mandigo'),the_title('','',false)); ?>"><?php the_title(); ?></a></h2>
<small><?php printf(__('Posted by: %s in %s','mandigo'),mandigo_author_link(get_the_author_ID(),get_the_author()),get_the_category_list(', ')) ?><?php edit_post_link(__('Edit','mandigo'), ' - <img src="' . get_bloginfo('stylesheet_directory') . '/images/'. get_option('mandigo_scheme') .'/edit.gif" alt="'. __('Edit this post','mandigo') .'" /> ', ''); ?> </small>
</div>
<div class="entry">
<?php the_content(__('Read the rest of this entry','mandigo') .' »'); ?>
</div>
<p class="postmetadata"><img src="<?php echo get_bloginfo('stylesheet_directory'); ?>/images/<?php echo get_option('mandigo_scheme'); ?>/comments.gif" alt="Comments" /> <?php comments_popup_link(__('No Comments','mandigo'). ' »', __('1 Comment','mandigo'). ' »', __('% Comments','mandigo'). ' »'); ?></p>
</div>
<?php endwhile; ?>
Alles anzeigen
Reicht es wenn ich die Zeile:
<?php the_content(__('Read the rest of this entry','mandigo') .' »'); ?>
entferne?
Darüberhinaus möchte ich gerne alle posts die am gleichen Tag gepostet werden der übersichtlichkeit zusammenfassen.. wie geht das hier? :)
Vielen Dank schon mal für die Hilfe! :)