将 HTML 标记添加到 WordPress 中的 $wpdb 结果
然而,我正在使用 Wordpress 中的 WPDB 类提取一些数据 - 数据作为原始数据检索,没有任何标记。
如何自动添加此标记?
I'm pulling some data with the WPDB class in Wordpress, however - the data is being retrieved as raw data, without any markup.
How can I automatically add this markup?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应为
$text = apply_filters( 'the_content', $text );
— 一个下划线。Should be
$text = apply_filters( 'the_content', $text );
— one underscore.明白了:)
$text = apply___filters('the_content', $text);
请参阅
wp-includes/formatting.php
Got it :)
$text = apply___filters('the_content', $text);
See reference at
wp-includes/formatting.php