mirror of
https://ghproxy.net/https://github.com/AlxMedia/curver.git
synced 2025-08-28 18:39:44 +08:00
Update to Kirki 4.2.0
This commit is contained in:
parent
cbfd4f27e4
commit
77ecd4ca69
440 changed files with 6230 additions and 5211 deletions
|
@ -0,0 +1,74 @@
|
|||
<?php
|
||||
/**
|
||||
* Settings page template.
|
||||
*
|
||||
* @package Kirki
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || die( "Can't access directly" );
|
||||
|
||||
return function () {
|
||||
?>
|
||||
|
||||
<div class="wrap heatbox-wrap kirki-settings-page" data-setup-udb-nonce="<?php echo esc_attr( wp_create_nonce( 'Kirki_Prepare_Install_Udb' ) ); ?>">
|
||||
|
||||
<div class="heatbox-header heatbox-has-tab-nav heatbox-margin-bottom">
|
||||
|
||||
<div class="heatbox-container heatbox-container-center">
|
||||
|
||||
<div class="logo-container">
|
||||
|
||||
<div>
|
||||
<span class="title">
|
||||
<?php _e( 'Kirki Customizer Framework', 'kirki' ); ?>
|
||||
<span class="version"><?php echo esc_html( KIRKI_VERSION ); ?></span>
|
||||
</span>
|
||||
<p class="subtitle"><?php _e( 'The #1 Customizer Toolkit for WordPress Theme Developers.', 'kirki' ); ?></p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<img src="<?php echo esc_url( KIRKI_PLUGIN_URL ); ?>/assets/images/kirki-logo-rounded.png">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<nav>
|
||||
<ul class="heatbox-tab-nav">
|
||||
<li class="heatbox-tab-nav-item kirki-settings-panel">
|
||||
<a href="#settings"><?php _e( 'Settings', 'kirki' ); ?></a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="heatbox-container heatbox-container-center heatbox-column-container">
|
||||
|
||||
<div class="heatbox-main heatbox-panel-wrapper">
|
||||
|
||||
<!-- Faking H1 tag to place admin notices -->
|
||||
<h1 style="display: none;"></h1>
|
||||
|
||||
<div class="heatbox-admin-panel kirki-settings-panel">
|
||||
<?php
|
||||
require __DIR__ . '/metaboxes/clear-font-cache.php';
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="heatbox-sidebar">
|
||||
<?php require __DIR__ . '/metaboxes/documentation.php'; ?>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<?php
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue