|
@@ 2637-2639 (lines=3) @@
|
| 2634 |
|
* |
| 2635 |
|
* @param bool $show Whether to display the posts feed link. Default true. |
| 2636 |
|
*/ |
| 2637 |
|
if ( apply_filters( 'feed_links_show_posts_feed', true ) ) { |
| 2638 |
|
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( sprintf( $args['feedtitle'], get_bloginfo( 'name' ), $args['separator'] ) ) . '" href="' . esc_url( get_feed_link() ) . "\" />\n"; |
| 2639 |
|
} |
| 2640 |
|
|
| 2641 |
|
/** |
| 2642 |
|
* Filters whether to display the comments feed link. |
|
@@ 2648-2650 (lines=3) @@
|
| 2645 |
|
* |
| 2646 |
|
* @param bool $show Whether to display the comments feed link. Default true. |
| 2647 |
|
*/ |
| 2648 |
|
if ( apply_filters( 'feed_links_show_comments_feed', true ) ) { |
| 2649 |
|
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( sprintf( $args['comstitle'], get_bloginfo( 'name' ), $args['separator'] ) ) . '" href="' . esc_url( get_feed_link( 'comments_' . get_default_feed() ) ) . "\" />\n"; |
| 2650 |
|
} |
| 2651 |
|
} |
| 2652 |
|
|
| 2653 |
|
/** |