| Linux webm007.cluster106.gra.hosting.ovh.net 6.18.23-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Apr 22 15:33:38 CEST 2026 x86_64 Path : /home/e/g/l/eglisebaa/www/wp-content/plugins/wordpress-seo/src/conditionals/ |
| Current File : /home/e/g/l/eglisebaa/www/wp-content/plugins/wordpress-seo/src/conditionals/admin-conditional.php |
<?php
namespace Yoast\WP\SEO\Conditionals;
/**
* Conditional that is only met when in the admin.
*/
class Admin_Conditional implements Conditional {
/**
* Returns whether or not this conditional is met.
*
* @return bool Whether or not the conditional is met.
*/
public function is_met() {
return \is_admin();
}
}