| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/wp/shared/platform/mu-plugins/ |
Upload File : |
<?php
/**
* Plugin Name: SFP Robots
* Description: Adds noindex,nofollow to WooCommerce functional pages (cart, checkout, my-account, order-received) so they don't appear in search results. No-op on non-WC demos.
* Author: Philip Rehberger
* Version: 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
add_filter(
'wp_robots',
static function ( array $robots ): array {
if ( ! function_exists( 'is_cart' ) ) {
return $robots;
}
if (
is_cart() ||
is_checkout() ||
is_account_page() ||
( function_exists( 'is_order_received_page' ) && is_order_received_page() )
) {
$robots['noindex'] = true;
$robots['nofollow'] = true;
}
return $robots;
}
);