Oh man, so langsam verzweifel ich hier:
Ich will hinter jeden Atikel eine Trennergrafik einfügen :
PHP
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<h4><?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?></h4>
<div class="entry">
<?php the_content(' » mehr '); ?>
</div>
<p class="postmetadata">
» Author: <?php the_author() ?><br>
» Category: <?php the_category(', ') ?><br>
</p>
<!--
<?php trackback_rdf(); ?>
--><br />
</div>
<img src="http://www.blablabla.com/wp/wp-content/themes/elyjah_theme/_img/post_trenner_hori.gif" width="554" height="19"/>
<?php endwhile; ?>
Alles anzeigen
Das Problem ist, dass Wordpress die Grafiken automatisch runterskaliert.
1. Ich benutze die neuste (2.7) WP Version. Unter Einstellungen Mediathek sind sowohl mittlere, als auch große Bilder jenseits der 600px Grenze eingestellt.
2. die functions.php Lösung (damals WP 2.5 oder so) funktioniert nicht:
3. Interessanter Weise sind die Grafiken dann auch nicht genau 500px Breit sondern so ca. 503px...
Hat irgendjemand ein ähnliches Problem, oder kann mir sagen wie man das lösen kann.
DANKE schonmal im voraus für jede Hilfe!