钩子文档

post_comments_feed_link

💡 云策文档标注

概述

post_comments_feed_link 是一个 WordPress 过滤器钩子,用于修改文章评论 feed 的固定链接。它允许开发者在生成链接时自定义 URL。

关键要点

  • 这是一个过滤器钩子,用于过滤文章评论 feed 的固定链接。
  • 参数 $url 是文章评论 feed 的固定链接字符串。
  • 源代码中通过 apply_filters 调用,允许开发者修改链接。
  • 相关函数 get_post_comments_feed_link() 用于检索此链接。
  • 自 WordPress 1.5.1 版本引入。

📄 原文内容

Filters the post comments feed permalink.

Parameters

$urlstring
Post comments feed permalink.

Source

return apply_filters( 'post_comments_feed_link', $url );

Changelog

Version Description
1.5.1 Introduced.