PHP 8.2.31
Preview: post-conditional.php Size: 736 B
/home/nshryvcy/blissfulnepal.com/wp-content/plugins/wordpress-seo/src/conditionals/admin/post-conditional.php

<?php

namespace Yoast\WP\SEO\Conditionals\Admin;

use Yoast\WP\SEO\Conditionals\Conditional;

/**
 * Conditional that is only met when on a post edit or new post page.
 */
class Post_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;

		// Current page is the creation of a new post (type, i.e. post, page, custom post or attachment).
		if ( $pagenow === 'post-new.php' ) {
			return true;
		}

		// Current page is the edit page of an existing post (type, i.e. post, page, custom post or attachment).
		if ( $pagenow === 'post.php' ) {
			return true;
		}

		return false;
	}
}

Directory Contents

Dirs: 0 × Files: 7

Name Size Perms Modified Actions
1017 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
1.95 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download
724 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
418 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
736 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
486 B lrw-r--r-- 2026-06-03 14:57:42
Edit Download
1.03 KB lrw-r--r-- 2026-06-03 14:57:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).