| 1 |
<?php |
| 2 |
|
| 3 |
defined( 'ABSPATH' ) || exit; |
| 4 |
|
| 5 |
?> |
| 6 |
|
| 7 |
<div class="wowp-snippets__header"> |
| 8 |
<h3 class="wowp-snippets__header-title">Developer / Debug Tools</h3> |
| 9 |
<p class="wowp-snippets__header-description">Advanced utilities for administrators and developers to test, debug, and quickly manage site environments.</p> |
| 10 |
</div> |
| 11 |
|
| 12 |
<div class="wowp-snippet__list"> |
| 13 |
|
| 14 |
<div class="wowp-snippet__item"> |
| 15 |
<div class="wowp-snippet__item-header"> |
| 16 |
<label for="show_page_debug_info">Show Page Debug Info</label> |
| 17 |
<p class="wowp-snippet__item-description"> |
| 18 |
Display technical info for the current request in the Admin Bar (template, query type, object, body classes). Admins only. |
| 19 |
</p> |
| 20 |
</div> |
| 21 |
<div class="wowp-field has-checkbox"> |
| 22 |
<label class="switch"> |
| 23 |
<?php self::field( 'checkbox', 'show_page_debug_info' ); ?> |
| 24 |
<span class="slider"></span> |
| 25 |
</label> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
|
| 29 |
<div class="wowp-snippet__item"> |
| 30 |
<div class="wowp-snippet__item-header"> |
| 31 |
<label for="theme_switcher">Theme Switcher</label> |
| 32 |
<p class="wowp-snippet__item-description"> |
| 33 |
Quickly switch between installed themes directly from the admin bar. |
| 34 |
</p> |
| 35 |
</div> |
| 36 |
<div class="wowp-field has-checkbox"> |
| 37 |
<label class="switch"> |
| 38 |
<?php self::field( 'checkbox', 'theme_switcher' ); ?> |
| 39 |
<span class="slider"></span> |
| 40 |
</label> |
| 41 |
</div> |
| 42 |
</div> |
| 43 |
|
| 44 |
|
| 45 |
</div> |
| 46 |
|