Created
January 2, 2020 09:35
-
-
Save AndreaBarghigiani/3a1a682a01baa7ca1b26e2d95fcbcdd8 to your computer and use it in GitHub Desktop.
Aggiungi tutti i Controlli che desideri al Theme Customizer: https://skillsandmore.org/aggiungi-controlli-theme-customizer/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Aggiungo la pagina d'esempio per i componenti | |
include_once( get_stylesheet_directory() . '/inc/theme-customizer/theme-customizer-demo.php' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Register the breadcrumbs settings and controls. | |
* | |
* @since 2.1.0 | |
* | |
* @param WP_Customize_Manager $wp_customize WP_Customize_Manager instance. | |
*/ | |
private function breadcrumbs( $wp_customize ) { | |
$wp_customize->add_section( | |
'genesis_breadcrumbs', | |
array( | |
'title' => __( 'Breadcrumbs', 'genesis' ), | |
'priority' => '158.82', | |
) | |
); | |
$settings = array( ... ); | |
$priority = 1; | |
foreach ( $settings as $setting => $label ) { | |
$wp_customize->add_setting( ... ); | |
$wp_customize->add_control( ... ); | |
$priority++; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function sam_breadcrumb_edit( $wp_customize ){ | |
require_once dirname(__FILE__) . '/inc/theme-customizer/select/google-font-dropdown-custom-control.php'; | |
$wp_customize->add_setting( | |
'google_font_setting', | |
array( 'default' => '', ) | |
); | |
$wp_customize->add_control( | |
new Google_Font_Dropdown_Custom_Control( | |
$wp_customize, | |
'google_font_setting', | |
array( | |
'label' => 'Seleziona il font da Google', | |
'section' => 'genesis_breadcrumbs', | |
'settings' => 'google_font_setting', | |
'type' => 'select', | |
'priority' => 1 | |
) | |
) | |
); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function sam_inserisco_css() { | |
?> | |
<style type="text/css"> | |
.breadcrumb { | |
font-family: <?php echo get_theme_mod('google_font_setting', 'Arial'); ?>; | |
} | |
</style> | |
<?php | |
} | |
add_action( 'wp_head', 'sam_inserisco_css'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment