feed_links_show_comments_feed

feed_links_show_comments_feed

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action
See hook in action

See hook in core

Displaying hooks found in version: wordpress-6.7.2

do_action('feed_links_show_comments_feed') is found 2 times:

  • /wp-includes/general-template.php line 3154
    3150
    3151
    3152
    3153
    3154
    3155
    3156
    3157
    3158
    3159
    3160
    * @since 4.4.0
     *
     * @param bool $show Whether to display the comments feed link. Default true.
     */
    if ( apply_filters( 'feed_links_show_comments_feed', true ) ) {
        printf(
            '<link rel="alternate" type="%s" title="%s" href="%s" />' . "\n",
            feed_content_type(),
            esc_attr( sprintf( $args['comstitle'], get_bloginfo( 'name' ), $args['separator'] ) ),
            esc_url( get_feed_link( 'comments_' . get_default_feed() ) )
        );
  • /wp-includes/general-template.php line 3207
    3203
    3204
    3205
    3206
    3207
    3208
    3209
    3210
    3211
    3212
    3213
    $id   = 0;
    $post = get_post( $id );
     
    /** This filter is documented in wp-includes/general-template.php */
    $show_comments_feed = apply_filters( 'feed_links_show_comments_feed', true );
     
    /**
     * Filters whether to display the post comments feed link.
     *
     * This filter allows to enable or disable the feed link for a singular post
     * in a way that is independent of {@see 'feed_links_show_comments_feed'}

See this hook used in plugins: