Ben bir bağlantı içine Loop bir yazı dönüm bir sabit zaman yaşıyorum. Temelde ben bağlantılar içine görüntülenen mesajları yapmaya çalışıyorum. Döngü otomatik olarak tüm <a>
etiketlerini kapatır ve bana büyük bir bağlantı içine the_post()
içeriğini çevirmek izin vermez.
Burada sorun kodu bulunuyor. Basit Bu muhtemelen bir şey ben sadece bakan ediyorum.
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<a href="#" <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h3><?php the_title(); ?></h3>
</a>
<?php endwhile; ?>
*Edited to remove extraneous link. Also, this is not valid HTML, it's just test code for a proof-of-concept piece.