rss_enclosure

过滤钩子
apply_filters( 'rss_enclosure', '
参数
  • (string) $html_link_tag The HTML link tag with a URI and other attributes.
    Required:
    Default:
定义位置
相关勾子
atom_enclosurerss2_nssites_clausesterms_clausescomment_closed
相关方法
rss_enclosureatom_enclosuredo_enclosedo_all_enclosuresget_enclosedrest_is_field_included
引入
2.2.0
弃用
-

rss_enclosure: 这个钩子在RSS feed中被调用,以显示每个项目的外壳信息。外壳信息用于指定附件,如Feed中的一个项目的媒体文件。该钩子可用于修改每个项目的外壳信息。

过滤当前文章的RSS外壳的HTML链接标签。

echo apply_filters( 'rss_enclosure', '<enclosure url="' . esc_url( trim( $enclosure[0] ) ) . '" length="' . absint( trim( $enclosure[1] ) ) . '" type="' . esc_attr( $type ) . '" />' . "n" );

常见问题

FAQs
查看更多 >