We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
! is_home()
1 parent 75e082c commit 541087cCopy full SHA for 541087c
src/wp-includes/general-template.php
@@ -3326,9 +3326,8 @@ function feed_links_extra( $args = array() ) {
3326
*/
3327
$args = apply_filters( 'feed_links_extra_args', $args );
3328
3329
- // Singular objects only, excluding a single `show_on_front` Home Page.
3330
$queried_object = get_queried_object();
3331
- if ( is_singular() && ! is_home() && $queried_object instanceof WP_Post ) {
+ if ( is_singular() && $queried_object instanceof WP_Post ) {
3332
$post = $queried_object;
3333
3334
/** This filter is documented in wp-includes/general-template.php */
0 commit comments