首页 > WordPress学习 > WordPress主循环The Loop用法详解 主循环函数使用方法

WordPress主循环The Loop用法详解 主循环函数使用方法

时间:2022年11月18日 分类:WordPress学习 浏览量:606

WordPress的主循环the loop函数,用来输出主题默认信息,例如文章内容、标题、列表、评论等。一些WordPress函数需要基于loop循环中使用,比如获取文章ID来达到其他信息输出。

the_title():输出标题;
the_time():输出文章发表时间;
the_category():输出文章的分类;
the_permalink():输出文章的链接;

这些函数都需要在主循环中实现

<?php
if ( have_posts() ) :
    while ( have_posts() ) : the_post();
        // Display post content
    endwhile;
endif;
?>

用have_posts()检查是否含有数据,如果有,则输出相关内容。

例如首页index展示相关信息:

<?php
get_header();
if ( have_posts() ) :
    while ( have_posts() ) : the_post();
        // Display post content
    endwhile;
endif;
?>

其中get_header获取公用头部信息,接种检索是否存在posts。

在这些示例中,我们注意到从if开始到while承接,再到while结束,最后if结束,必须按照这样的逻辑规则进行。如果没有任何信息,那么我们可以用else进行定义,输出FALSE的信息:

<?php
get_header();

if ( have_posts() ) :
    while ( have_posts() ) : the_post();
        the_content();
    endwhile;
else :
    _e( 'Sorry, no posts matched your criteria.', 'textdomain' );
endif;

get_sidebar();
get_footer();
?>

可以是固定文本,也可以是其他内容。

the loop 相关的部分常见模板函数:

the_author():获取作者的名字;
the_title():显示当前文章的标题;
the_content():显示文章的内容;
the_permalink():显示文章的链接;
the_ID():显示文章或页面的ID;
the_tags():显示tag标签;
the_time():显示时间;
the_category():分类列表;
the_meta():文章或页面相关的自定义字段;

部分常见条件函数:

is_home() – 是否首页
is_admin() – 是否管理员
is_single() – 是否文章页
is_page() – 是否页面
is_page_template() – 确定页面使用了特定的模板, 比如: is_page_template('about-page.php')
is_category() – 判断是否为特定分类, 比如: is_category('news')
is_tag() – 判断tag标签
is_author() – 判断作者
is_search() – 判断搜索
is_404() – 判断404
has_excerpt() – 判断摘要

the loop 相关官方解释文档:https://developer.wordpress.org/themes/basics/the-loop/

版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权

文章名称:WordPress主循环The Loop用法详解 主循环函数使用方法

文章链接:https://www.qqhgg.com/124.html

该作品系作者结合个人学习经验及互联网相关知识整合。如若侵权请通过投诉通道提交信息,我们将按照规定及时处理。

标签:

最新文章

猜你喜欢