欢迎光临
感谢一路有你

wordpress模板开发 | 循环的使用(4)

如果你对该文章中的内容有疑问/不解,可以点击此处链接提问
要注明问题和此文章链接地址 点击此处跳转
 

列表中循环的使用

<!-- 循环 -->
<?php
if(have_posts()){
    while (have_posts()){
        the_post();
        // var_dump($post->ID);
        // var_dump($post->post_date);
        // var_dump($post->post_title);
        ?>
        <div style='border:1px solid #ccc'>
           <h2><a href="<? the_permalink();?>"><? the_title(); ?></a></h2> 
           <p><? the_content(); ?></p>
        </div>
    <?php
    }
}else{
    echo '没有文章显示';
}
?>

判断是否有文章   have_posts()

赋值item   the_post()

输出标题   the_title()

输出链接   the_permalink()

输出内容   the_content()

这里输出内容有个小技巧,默认全部全部输出内容,不易截取,可以再编辑器中添加more

image.png

前台页面显示

image.png

> 本文由子枫笔记快捷发布!

赞(0) 打赏
未经允许不得转载:王明昌博客 » wordpress模板开发 | 循环的使用(4)
分享到: 更多 (0)

相关推荐

  • 暂无文章

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏

×
订阅图标按钮