mirror of
https://gh.wpcy.net/https://github.com/BracketSpace/WP-Admin-Reference.git
synced 2026-07-15 11:17:15 +08:00
19 lines
726 B
PHP
19 lines
726 B
PHP
<?php
|
|
/**
|
|
* Section about view
|
|
*
|
|
* @package wpadminref
|
|
*/
|
|
|
|
?>
|
|
|
|
<section class="section section-about" id="about">
|
|
<div class="section-content large-text d-flex flex-column justify-content-center h-100">
|
|
<h1 class="big-title">WP-Admin<br/>Reference</h1>
|
|
<div class="text-light text-subtitle">WordPress version: <?php echo esc_html( get_bloginfo( 'version' ) ); ?></div>
|
|
<p class="text-description">
|
|
This is a place where you can quickly reference elements from wp-admin.<br>You can use them in your own plugins.<br/><br/>
|
|
This is an actual WordPress Dashboard loaded. All the styles and scripts are already available on the admin side. You can just grab the HTML and you are all set.
|
|
</p>
|
|
</div>
|
|
</section>
|