| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/cdc/wp-content/plugins/child-theme-configurator/includes/forms/ |
Upload File : |
<?php
if ( !defined( 'ABSPATH' ) ) exit;
// Additional stylesheets
$stylesheets = $this->get_files( $this->get_current_parent(), 'stylesheet' );
if ( count( $stylesheets ) ):?>
<div class="ctc-input-cell ctc-section-toggle" id="ctc_additional_css_files"> <strong>
<?php _e( 'Parse additional stylesheets:', 'child-theme-configurator' ); ?>
</strong> </div>
<div class="ctc-input-cell-wide ctc-section-toggle-content" id="ctc_additional_css_files_content">
<p style="margin-top:0">
<?php _e( 'Stylesheets that are currently being loaded by the parent theme are automatically selected below (except for Bootstrap stylesheets which add a large amount data to the configuration). To further reduce overhead, select only the additional stylesheets you wish to customize.', 'child-theme-configurator' ); ?>
</p>
<ul>
<?php foreach ( $stylesheets as $stylesheet ): ?>
<li>
<label>
<input class="ctc_checkbox" name="ctc_additional_css[]" type="checkbox"
value="<?php echo $stylesheet; ?>" />
<?php echo esc_attr( $stylesheet ); ?></label>
</li>
<?php endforeach; ?>
</ul>
</div>
<?php endif; ?>