Files
Roman Pyrih d6241cfa7a first commit
2024-12-19 15:27:13 +01:00

19 lines
255 B
PHP

<?php
if (!defined('ABSPATH')) {
exit;
}
/**
* @return bool
*
* @global string $pagenow
*
* @since 0.0.1
*/
function mphbs_is_edit_post_page()
{
global $pagenow;
return is_admin() && in_array($pagenow, ['post.php', 'post-new.php']);
}