当前浏览:首页 / WordPress函数 / in_the_loop()

in_the_loop()

调用方是否在循环中

in 判断

loop

themore...


描述

更多类似的主题函数信息,请查看主题开发手册中的条件标签文章。


返回

(bool) 如果调用方在循环内,则为true,如果循环尚未开始或结束,则为false。



源码

查看源码 官方文档


更新日志

版本描述
2.0.0开始引入

使用示例

  • 示例1

    修改单个文章标题

    为了在函数文件中使用,此代码示例使您能够修改条目标题的默认输出。

    function wpdocs_modify_single_post_entry_titles( $title ) {
    
    	if ( is_singular( 'post' ) && in_the_loop() ) {
    		/* Modify $title */
    	}
    
    	return $title;
    }
    add_filter( 'the_title', 'wpdocs_modify_single_post_entry_titles' );