# wp-coder/trunk/includes/pages/10.debug-log.php

WP Coder – Insert &amp; Manage Code Snippets, version trunk. 27 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/trunk/code/includes/pages/10.debug-log.php
- Raw: https://pluginprobe.com/plugins/wp-coder/trunk/raw/includes/pages/10.debug-log.php
- Modified: 2025-08-15T10:41:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/trunk/code/includes/pages/10.debug-log.php#L10-L20`.

```php
<?php

use WPCoder\Dashboard\DashboardInitializer;
use WPCoder\Dashboard\DebugLog;

defined( 'ABSPATH' ) || exit;

if ( ! current_user_can( 'unfiltered_html' ) ) {
	wp_die( esc_attr__( 'You do not have sufficient permissions to access this page.', 'wp-coder' ) );
}
?>

    <div class="wowp">
		<?php DashboardInitializer::header(); ?>

        <div class="wowp-page-header">
            <h2 class="wowp-page-header__title">
				<?php esc_html_e( 'Debug', 'wp-coder' ); ?>
            </h2>
        </div>

		<?php DebugLog::init(); ?>

    </div>

<?php

```
