调用循环是一个未定义的函数

时间:2017-12-15 19:56:18

标签: php html wordpress

我希望PHP通过Wordpress中的帖子获取我的内容,而不仅仅是main.php文件中的纯HTML代码。所以我的想法是,我只是将我的所有HTML代码复制到Wordpress上的帖子中,并在我的PHP文件中使用此代码:

<?php 
if(have_posts()){
while(have_posts()){
the_post();
 the_content();
   } 
 }
?>

当我打开我的网站时,我收到错误:

  

致命错误:未捕获错误:在/var/www/fabgraphics.dk/public_html/wordpress/wp-content/themes/BrandtsKlaedefabrik/main.php:6中调用未定义函数have_posts()堆栈跟踪:#0 {main在第6行的/var/www/fabgraphics.dk/public_html/wordpress/wp-content/themes/BrandtsKlaedefabrik/main.php中抛出

HTML: https://codepen.io/fredtube/pen/XVmjMx

GitHub存储库: https://github.com/fabruun/code-stackoverflow

0 个答案:

没有答案