Make WordPress Core

Ticket #53262: fix-wp_die-notices.patch

File fix-wp_die-notices.patch, 467 bytes (added by optimocha, 3 years ago)

Fix wp_die() notices regarding early detections of is_embed and is_search

  • src/wp-includes/functions.php

     
    37863786                <?php
    37873787                if ( function_exists( 'wp_robots' ) && function_exists( 'wp_robots_no_robots' ) && function_exists( 'add_filter' ) ) {
    37883788                        add_filter( 'wp_robots', 'wp_robots_no_robots' );
     3789                        remove_filter( 'wp_robots', 'wp_robots_noindex_embeds' );
     3790                        remove_filter( 'wp_robots', 'wp_robots_noindex_search' );
    37893791                        wp_robots();
    37903792                }
    37913793                ?>
    37923794