mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-17 18:50:18 -04:00
9 lines
290 B
PHP
9 lines
290 B
PHP
<?php
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
|
if ( $childname = $this->css()->get_prop( 'child_name' ) ): ?>
|
|
<div class="ctc-input-cell">
|
|
<h3><?php echo __( 'Currently loaded', 'child-theme-configurator' ). ': ' . $childname; ?></h3>
|
|
</div>
|
|
<?php endif;
|