📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 10:19:12
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
helpers
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wordpress-seo/src/helpers
🔄 Refresh
✏️
Editing: robots-helper.php
Writable
<?php namespace Yoast\WP\SEO\Helpers; /** * A helper object for the robots meta tag. */ class Robots_Helper { /** * Sets the robots index to noindex. * * @param array $robots The current robots value. * * @return array The altered robots string. */ public function set_robots_no_index( $robots ) { if ( ! \is_array( $robots ) ) { \_deprecated_argument( __METHOD__, '14.1', '$robots has to be a key-value paired array.' ); return $robots; } $robots['index'] = 'noindex'; return $robots; } }
💾 Save Changes
❌ Cancel