Habe auf einer Seite dieses Problem:
http://s3.imgimg.de/uploads/Bildsc…4282c3d8png.png
Ich möchte gerne, dass der "Weiterlesen >" Tag nicht so verschoben ist, wie kann ich das ändern? Hier den Code, den ich benutzt habe.
PHP
<h2><a href="aktuelle-nachrichten"><font color="#777777"><u>Aktuelle Nachrichten</u></font></a></h2><?php global $myPosts; $myPosts = '';?> <?php $my_query = new WP_Query(); $my_query->query('showposts=1&orderby=date'); if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); $myPosts .= $post->ID . ","; ?> <h2><a id="post-<?php the_ID(); ?>" href="<?php the_permalink() ?>" rel="bookmark" title=" <?php the_title(); ?>"><?php the_title(); ?></a></h2><p>Veröffentlicht am <strong><?php the_date(); ?></strong>, geschrieben von <strong><?php the_author() ?></strong></p><div class="post-entry"> <?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> </a> <?php endif; ?> <?php the_excerpt(); ?> <?php wp_link_pages(array('before' => '<div class="pagination">' . __('Pages:', 'responsive'), 'after' => '</div>')); ?> </div><?php endwhile; endif; ?> </div>
Danke schon Mal für etwaige Hilfe.