Um eventuell hier hilfe zu bekommen, hier noch eine kopie meines Forenbeitrages auf dem Wordpress Forum:
Also das Theme (Freshy 2 für Wordpress)sieht zwar super aus, aber es ist einfach nicht verständlich
Also ich habe aktuell folgendes Problem:
Wenn meine Leser auf meinen Blog kommen sollen sie sofort sehen können welcher Post von heute und welcher von gestern ist. deshalb wollte ich das Datum einfach immer ganz oben anzeigen lassen. (ähnlich wie hier: http://www.play3.de/index.php )
Habe im Internet nichts hilfreiches gefunden, außer diesen Forenbeitrag :
http://forum.wordpress-deutschland.or…
Leider kann ich das ganze nicht bei meinem Forum anwenden/oder ich suche ganz falsch.
Meine index.php:
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<?php if ($freshy_options['author']) : ?><small><?php the_author(); ?><?php endif; ?><?php if ($freshy_options['date']) : ?><small><?php if ($freshy_options['author']) : ?>|<?php endif; ?><?php the_date() ?><?php endif; ?><?php if ($freshy_options['time']) : ?><small><?php if ($freshy_options['date']) : ?>|<?php endif; ?><?php the_time() ?><?php endif; ?><br><?php the_content('<span class="readmore">'.__('Read the rest of this entry »',TEMPLATE_DOMAIN).''); ?><br><br><br><br><?php _e('Comments',TEMPLATE_DOMAIN); ?><?php comments_popup_link(__('No Comments »',TEMPLATE_DOMAIN), __('1 Comment »',TEMPLATE_DOMAIN),__('% Comments »',TEMPLATE_DOMAIN)); ?><br><?php _e('Categories',TEMPLATE_DOMAIN); ?><?php the_category(', ') ?><br><?php if(function_exists('the_tags')) : ?><?php the_tags('<dt>Tags ', ', ', ' '); ?><br><?php endif; ?><?php if(function_exists('the_bunny_tags')) : ?><?php the_bunny_tags('<dt>Tags ', ' ', ', '); ?><br><?php endif; ?><?php if(function_exists('the_bookmark_links')) : ?><?php _e('Spread the word',TEMPLATE_DOMAIN); ?><?php the_bookmark_links(); ?><br><?php endif; ?><?php if ('open' == $post-> comment_status) : ?><br><?php comments_rss_link(__('Comments rss',TEMPLATE_DOMAIN)); ?><br><?php endif; ?><?php if ('open' == $post->ping_status) : ?><br><a href="%3C?php%2520trackback_url(true);%2520?%3E%2520" rel="nofollow"></a> <br><?php endif; ?><?php if ($user_ID) : ?><?php edit_post_link(__('Edit',TEMPLATE_DOMAIN),'',''); ?><br><?php endif; ?><br><br></small></small></small>
<?php endwhile; ?>
<?php next_posts_link(__('« Previous Entries',TEMPLATE_DOMAIN)) ?>
<?php previous_posts_link(__('Next Entries »',TEMPLATE_DOMAIN)) ?>
<?php else : // nothing found ?>
<?php _e('Not found',TEMPLATE_DOMAIN); ?>
<?php _e("Sorry, but you are looking for something that is not here",TEMPLATE_DOMAIN); ?>
<?php endif; ?><?php // sidebars ?><?php if ($freshy_options['sidebar_right'] == true) get_sidebar(); ?><?php if ($freshy_options['sidebar_left'] == true) include (TEMPLATEPATH . '/sidebar_left.php'); ?><?php get_footer(); ?>