- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我当时正在研究 WordPress 的新主题,并花了很多时间在 get_the_content() 函数上。
<div class="clearfix">
<div>
<p><?=get_the_content();?></p>
</div>
</div>
似乎它不处理快捷方式,也不处理段落。
然后我将其替换为 the_content();我的段落和快捷方式开始起作用。
<div class="clearfix">
<div>
<p><?=the_content();?></p>
</div>
</div>
我的问题:函数之间有什么区别,有什么附加处理 the_content();比较 get_the_content();?
最佳答案
虽然@J Quest 提供了充分的答案,但我想详细说明一下。一般来说,WordPress有两种post变量函数:get_
函数和the_
函数。
get_
函数,例如 get_the_content()
或 get_the_ID()
将返回所需的信息,然后必须对其进行操作并打印到页面上。一些例子:
$content = get_the_content();
$content = apply_filters( 'the_content', $content );
$content = str_replace( 'foo', 'bar', $content );
echo 'Post #'. get_the_ID() . $content;
the_
函数,例如 the_content()
和 the_ID()
实际上 echo
返回的值,如果适用,将为适当的值应用“默认过滤器”。这些函数不需要回显。
echo get_the_ID();
在功能上与
相同the_ID();
如果您查看有关 the_ID()
的文档,您会发现它实际上只是输出 get_the_ID()
的值。来自来源:
function the_ID() {
echo get_the_ID();
}
在这种情况下,如果您尝试将 the_
函数设置为变量,您将在整个页面中留下一连串重复的变量。
$id = the_ID();
echo 'Post ID: '.$id;
将输出:
123Post ID: 123
要使用 get_the_content()
并运行短代码,您需要通过 do_shortcode()
运行它函数,或者更好的 the_content
过滤器。
$content = get_the_content();
echo do_shortcode( $content );
// Or:
echo apply_filters( 'the_content', $content );
如果您只需要在模板中吐出帖子内容,无需任何操作,您通常最好使用(没有 echo 或 echo 短标签):
the_content();
关于php - WordPress:get_the_content() 和 the_content() 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50892776/
我为 WordPress 编写的短代码有问题。我正在尝试使用 get_the_content() 函数,但不是提取我创建的自定义帖子类型的内容,而是提取短代码所在页面的内容。其他功能都工作正常,例如g
在自定义 WordPress 主题中,我使用 WP_Query 在主页上提取自定义帖子类型信息。我将一些数据存储在变量中,结束自定义查询和循环,重置查询,然后稍后在页面中调用变量。 oEmbed 适用
我当时正在研究 WordPress 的新主题,并花了很多时间在 get_the_content() 函数上。 似乎它不处理快捷方式,也不处理段
我是一名优秀的程序员,十分优秀!