Hallo,
ich habe folgendes Problem: Ich möchte in der Category, dass der Eintrag folgendermaßen aussieht:
[COLOR=black]BILD ÜBERSCHRIFT[/COLOR]
[COLOR=black]........DATUM[/COLOR]
derzeit sieht es bei mir so aus:
[COLOR=red]BILD[/COLOR]
[COLOR=red]ÜBERSCHRIFT[/COLOR]
[COLOR=red]DATUM[/COLOR]
Kann mir jemand helfen, was ich genau ändern muss, damit das funktioniert? Also wie ich das Bild vor die Überschrift bekomme?
Mein Code sieht derzeit so aus:
PHP
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php $custom_fields = get_post_custom(); //custom fields ?>
<?php zg_uploaded_files('link_class=category_pic'); ?><h2><a href="<?php the_permalink() ?>" title="Permalink"><?php the_title(); ?></a></h2>
<?php the_time('d. F Y') ?><div> </div>
[COLOR=black]<?php endwhile; ?>
[COLOR=black]<?php else : ?>
[COLOR=black]<h2>Nicht gefunden</h2>
<p>Es wurde kein Inhalt gefunden.</p>
<?php endif; ?>
</div>
Alles anzeigen
Dieser funktioniert jedoch nicht, an was könnte das liegen?