|
@@ 2603-2605 (lines=3) @@
|
| 2600 |
|
* |
| 2601 |
|
* @param bool $show Whether to display the posts feed link. Default true. |
| 2602 |
|
*/ |
| 2603 |
|
if ( apply_filters( 'feed_links_show_posts_feed', true ) ) { |
| 2604 |
|
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"; |
| 2605 |
|
} |
| 2606 |
|
|
| 2607 |
|
/** |
| 2608 |
|
* Filters whether to display the comments feed link. |
|
@@ 2614-2616 (lines=3) @@
|
| 2611 |
|
* |
| 2612 |
|
* @param bool $show Whether to display the comments feed link. Default true. |
| 2613 |
|
*/ |
| 2614 |
|
if ( apply_filters( 'feed_links_show_comments_feed', true ) ) { |
| 2615 |
|
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"; |
| 2616 |
|
} |
| 2617 |
|
} |
| 2618 |
|
|
| 2619 |
|
/** |