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.5.2

do_action('feed_links_show_comments_feed') is found 2 times:

  • /wp-includes/general-template.php line 3131
    	 * @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 3175
    		$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: