Suspend
1 week ago
ActionScheduler.php
1 week ago
AdminPages.php
1 week ago
AdminUrl.php
1 week ago
DB.php
1 week ago
Post.php
1 week ago
Resources.php
1 week ago
SyncHash.php
1 week ago
WCTaxonomies.php
1 week ago
WcAdminPages.php
1 week ago
WpAdminPages.php
1 week ago
WpAdminPages.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WCML\Utilities; |
| 4 | |
| 5 | class WpAdminPages { |
| 6 | |
| 7 | public static function isDashboard() { |
| 8 | global $pagenow; |
| 9 | |
| 10 | return is_admin() && 'index.php' === $pagenow; |
| 11 | } |
| 12 | |
| 13 | public static function isPermalinksSettings() { |
| 14 | global $pagenow; |
| 15 | |
| 16 | return is_admin() && 'options-permalink.php' === $pagenow; |
| 17 | } |
| 18 | } |
| 19 |