เมื่อทำเทมเพลตเช่น single.php และคุณมี php อยู่ใน html สิ่งที่ดีที่สุดคือ:
เริ่ม + หยุด PHP หรือไม่ ตัวอย่างเช่น
<h1 class="post-tilte"><?php the_title(); ?></h1> <p class="post-content"><?php the_content();?></p>
หรือ
สะท้อน HTML และ Escape PHP หรือไม่ ตัวอย่างเช่น -
<?php echo '<h1 class="post-title">' . get_the_title() . '</h1> <p class="post-content"' . get_the_content() . '</p>
ฉันไม่มีตัวเลือกล่วงหน้าและพบว่าตัวเองกำลังทำทั้งสองอยากรู้อยากเห็นความคิดบางอย่าง
printf( '<h1 class="post-title">%s</h1>', get_the_title() );
functions.php
หรือปลั๊กอินอื่น ๆ