जब कोई टेम्पलेट जैसे कि single.php और आप html में लिपटे हुए php करते हैं, क्या यह सबसे अच्छा है:
शुरू + PHP बंद करो? उदाहरण के लिए
<h1 class="post-tilte"><?php the_title(); ?></h1> <p class="post-content"><?php the_content();?></p>
या
इको HTML और एस्केप 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
या प्लग इन आदि में करें