我创建了新的帖子,他存在,但没有显示。有任何想法吗?我的PHP版本:7.2.9
<?php
if(have_posts()){
while(have_posts()){
the_post();
}} ?>
<h1><a href="<?php the_permalink() ?>"><?php the_title();?></a></h1>
<p><?php the_content() ?></p>
答案 0 :(得分:0)
您应该看到很多错误,即“;”您不能只在代码中遗漏什么,如果那确实是您的服务器中正在运行的内容,那么您什么也没有。
答案 1 :(得分:0)
感谢您的帮助。现在一切正常。
<?php
while(have_posts()){
the_post();
?>
<h1><a href ="<?php the_permalink()?>"><?php the_title(); ?></a></h1>
<p><?php the_content();?></p>
<?php
}
?>