mirror of
https://gh.wpcy.net/https://github.com/BracketSpace/WP-Admin-Reference.git
synced 2026-07-16 11:26:34 +08:00
16 lines
269 B
PHP
16 lines
269 B
PHP
<?php
|
|
/**
|
|
* Theme index page
|
|
*
|
|
* @package wpadminref
|
|
*/
|
|
|
|
?>
|
|
|
|
<?php get_header(); ?>
|
|
<div id="wpbody-content" style="overflow: hidden;">
|
|
<div class="wrap">
|
|
<?php get_template_part( 'template-parts/sections/content' ); ?>
|
|
</div>
|
|
</div>
|
|
<?php get_footer(); ?>
|