5
PHP最佳实践
在做诸如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> 我没有一个自由释放的选择,发现自己都做,只是好奇地听到一些想法