initial upload
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
jQuery( function( $ ) {
|
||||
|
||||
wp.customize('logo_size',function ( value ) {
|
||||
value.bind(function ( to ) {
|
||||
document.body.style.setProperty('--logo-size', to+'px');
|
||||
}
|
||||
);
|
||||
} );
|
||||
|
||||
} );
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
add_action( 'customize_register', 'zeitfresser_logo_size' );
|
||||
function zeitfresser_logo_size( $wp_customize ) {
|
||||
|
||||
$wp_customize->add_setting( 'logo_size', array(
|
||||
'default' => zeitfresser_get_default_logo_size(),
|
||||
'transport' => 'postMessage',
|
||||
'sanitize_callback' => 'absint'
|
||||
) );
|
||||
|
||||
$wp_customize->add_control( 'logo_size', array(
|
||||
'type' => 'number',
|
||||
'settings' => 'logo_size',
|
||||
'priority' => 8,
|
||||
'label' => esc_html__( 'Logo Size', 'zeitfresser' ),
|
||||
'section' => 'title_tagline',
|
||||
'input_attrs' => array(
|
||||
'min' => 10,
|
||||
'max' => 100
|
||||
)
|
||||
) );
|
||||
|
||||
}
|
||||
|
||||
add_action( 'customize_preview_init', 'zeitfresser_logo_size_enqueue_scripts' );
|
||||
function zeitfresser_logo_size_enqueue_scripts() {
|
||||
wp_enqueue_script( 'graphthemes-logo-size-customizer', get_template_directory_uri() . '/inc/blocks/font-customization/logo-size/customizer-logo-size.js', array('jquery'), '', true );
|
||||
}
|
||||
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'zeitfresser_logo_size_dynamic_css' );
|
||||
function zeitfresser_logo_size_dynamic_css() {
|
||||
|
||||
$logo_size = esc_attr( get_theme_mod( 'logo_size', zeitfresser_get_default_logo_size() ) );
|
||||
$logo_size .= 'px';
|
||||
|
||||
$dynamic_css = ":root { --logo-size: $logo_size; }";
|
||||
|
||||
wp_add_inline_style( 'zeitfresser', $dynamic_css );
|
||||
}
|
||||
Reference in New Issue
Block a user