本文共 503 字,大约阅读时间需要 1 分钟。
WordPress中調用文章標題是the_title();調用文章內容時用到the_content();調用文章的作者時用到the_author();等等這些函數,都需要在主循環中使用,下面就介紹一下如何用have_posts()和the_post()開始Wordpress文章中循環,並說明如何結束循環。
語法
1
<?phpif (have_posts()) :while (have_posts()) : the_post(); ?>2
當找到文章時返回此語句3
<?phpendwhile ;else : ?>4
當沒有找到文章時,返回此語句5
循環開始標志
1
循環開始后,可以在循環中用the_title();輸出文章的標題,the_content();輸出文章的內容,the_author();輸出文章的作者等。
循環結束標志
1
<?phpendwhile ;else : ?>2
當沒有找到文章時,返回此語句3
循環開始,必須有循環結束。
一般主循環在尋找文章的時候用到,比如在WordPress模版中index.php,single.php,active.php等需要調用文章的文件中。
转载地址:http://vqhiv.baihongyu.com/