apply_filters( 'feed_links_extra_show_post_comments_feed', bool $show_comments_feed )
- Since
- 6.1.0
Filters whether to display the post comments feed link.
Description
This filter allows to enable or disable the feed link for a singular post in a way that is independent of 'feed_links_show_comments_feed' (which controls the global comments feed). The result of that filter is accepted as a parameter.
Compatibility
- WordPress
- since 6.1.0
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0).
Parameters
$show_comments_feedbool- Whether to display the post comments feed link. Defaults to the 'feed_links_show_comments_feed' filter result.
Where this hook fires · 1
wp-includes/general-template.php:3575feed_links_extra()
Source code
* * @since 6.1.0 * * @param bool $show_comments_feed Whether to display the post comments feed link. Defaults to * the {@see 'feed_links_show_comments_feed'} filter result. */ $show_post_comments_feed = apply_filters( 'feed_links_extra_show_post_comments_feed', $show_comments_feed ); if ( $show_post_comments_feed && ( comments_open( $post ) || pings_open( $post ) || (int) $post->comment_count > 0 ) ) { $title = sprintf( $args['singletitle'], get_bloginfo( 'name' ), $args['separator'],Changelog
Introduced in 6.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
- Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.