📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 14:28:00
📂
/ (Root)
/
home
/
apkbfjox
/
casinos.com.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
conditionals
/
admin
📍 /home/apkbfjox/casinos.com.pk/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