🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 03:51:26 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
reenrihair.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
conditionals
/
admin
📍 /home/therahul/reenrihair.com/wp-content/plugins/wordpress-seo/src/conditionals/admin
🔄 Refresh
✏️
Editing: posts-overview-or-ajax-conditional.php
Writable
<?php namespace Yoast\WP\SEO\Conditionals\Admin; use Yoast\WP\SEO\Conditionals\Conditional; /** * Conditional that is only met when on a post overview page or during an ajax request. */ class Posts_Overview_Or_Ajax_Conditional implements Conditional { /** * Returns whether or not this conditional is met. * * @return bool Whether or not the conditional is met. */ public function is_met() { global $pagenow; return $pagenow === 'edit.php' || \wp_doing_ajax(); } }
💾 Save Changes
❌ Cancel