GIF94; MINI MO Shell - Tarih Gösterimli

MINI MINI MANI MO - TARİH GÖSTERİMLİ

Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/util/
File Upload :
Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/util/is-gutenberg-page.php

<?php

namespace Breakdance;

/**
 * Determine whether the current post is gutenberg or not
 * @return bool
 */
function is_gutenberg_page()
{
    if (function_exists('is_gutenberg_page') &&
        \is_gutenberg_page()
    ) {
        // The Gutenberg plugin is on.
        return true;
    }

    $current_screen = get_current_screen();

    if (!isset($current_screen) || !method_exists($current_screen, 'is_block_editor')) {
        return false;
    }

    if ($current_screen->is_block_editor()) {
        // Gutenberg page on 5+.
        return true;
    }

    return false;
}

OHA YOOO - Tarih: 2026-08-04 00:06:16