PHP 8.2.31
Preview: xmlrpc.php Size: 1.22 KB
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/wordpress-seo/src/integrations/xmlrpc.php

<?php

namespace Yoast\WP\SEO\Integrations;

use Yoast\WP\SEO\Conditionals\XMLRPC_Conditional;

/**
 * Noindexes the xmlrpc.php file and all ways to request it.
 *
 * @phpcs:disable Yoast.NamingConventions.ObjectNameDepth.MaxExceeded -- Known false positive with acronyms. Fix expected in YoastCS 3.x.
 */
class XMLRPC implements Integration_Interface {

	/**
	 * Returns the conditionals based on which this loadable should be active.
	 *
	 * In this case when the current request is an XML-RPC request.
	 *
	 * @return array The conditionals based on which this class should be loaded.
	 */
	public static function get_conditionals() {
		return [ XMLRPC_Conditional::class ];
	}

	/**
	 * Initializes the integration.
	 *
	 * @return void
	 */
	public function register_hooks() {
		\add_filter( 'xmlrpc_methods', [ $this, 'robots_header' ] );
	}

	/**
	 * Sets a noindex, follow x-robots-tag header on all XMLRPC requests.
	 *
	 * @codeCoverageIgnore Basically impossible to test from the command line.
	 *
	 * @param array $methods The methods.
	 *
	 * @return array The methods.
	 */
	public function robots_header( $methods ) {
		if ( \headers_sent() === false ) {
			\header( 'X-Robots-Tag: noindex, follow', true );
		}

		return $methods;
	}
}

Directory Contents

Dirs: 6 × Files: 16

Name Size Perms Modified Actions
admin DIR
- drwxr-xr-x 2026-06-03 14:57:42
Edit Download
alerts DIR
- drwxr-xr-x 2026-06-03 14:57:42
Edit Download
blocks DIR
- drwxr-xr-x 2026-06-03 14:57:42
Edit Download
front-end DIR
- drwxr-xr-x 2026-06-03 14:57:42
Edit Download
- drwxr-xr-x 2026-06-03 14:57:42
Edit Download
watchers DIR
- drwxr-xr-x 2026-06-03 14:57:42
Edit Download
1.14 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
4.38 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
2.02 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
9.72 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
1.08 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
810 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
816 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
2.93 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
18.88 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
426 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
1.95 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
36.30 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
5.75 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
1006 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
2.08 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
1.22 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).