将 HTML 标记添加到 WordPress 中的 $wpdb 结果

发布于 2024-08-15 12:17:39 字数 81 浏览 8 评论 0原文

然而,我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

豆芽 2024-08-22 12:17:39

应为 $text = apply_filters( 'the_content', $text ); — 一个下划线。

Should be $text = apply_filters( 'the_content', $text ); — one underscore.

错々过的事 2024-08-22 12:17:39

明白了:)

$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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文