的 WordPress 挂钩标签

发布于 2024-12-05 13:32:54 字数 141 浏览 1 评论 0原文

我想在单个帖子页面上放置 标记的位置之前插入一个视频,以及帖子索引。

是否有一个钩子可以在帖子中作者的 标记之前或之后添加代码?

谢谢!

I want to insert a video right before where the <!--more--> tag has been placed on single post page, and the posts index.

Is there a hook to add code before or after the author's <!--more--> tag in a post?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌伤ぢ 2024-12-12 13:32:54

您可以尝试使用过滤器:

function more_filter($content) {
    return str_replace('<!--more-->', 'video code <!--more-->', $content);

}
add_filter('the_content', 'more_filter', 1, 1);

调整优先级,以便过滤器在删除 标记之前运行。

You can try a filter:

function more_filter($content) {
    return str_replace('<!--more-->', 'video code <!--more-->', $content);

}
add_filter('the_content', 'more_filter', 1, 1);

Adjust the priority so the filter runs before the <!--more--> tag is removed.

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