📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 14:52:34
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
conditionals
/
admin
📍 /home/supecsoq/public_html/domains/migalexpark.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