// into functions.php
add_theme_support( 'disable-custom-colors' );
// into functions.php
add_theme_support( 'editor-color-palette', array(
array(
'name' => __( 'Color prime', 'snippress' ),
'slug' => 'color-prime',
'color' => '#535353',
),
array(
'name' => __( 'Color second', 'snippress' ),
'slug' => 'color-second',
'color' => '#2a3f89',
),
array(
'name' => __( 'Color accent', 'snippress' ),
'slug' => 'color-accent',
'color' => '#EF1851',
),
) );
}
// into functions.php
add_theme_support( 'editor-font-sizes', array(
array(
'name' => __( 'Small', 'snippress' ),
'shortName' => __( 'S', 'snippress' ),
'size' => 12,
'slug' => 'small'
),
array(
'name' => __( 'Normal', 'snippress' ),
'shortName' => __( 'M', 'snippress' ),
'size' => 16,
'slug' => 'normal'
),
array(
'name' => __( 'Large', 'snippress' ),
'shortName' => __( 'L', 'snippress' ),
'size' => 24,
'slug' => 'large'
),
) );
// into functions.php
add_theme_support( 'editor-styles' );
add_editor_style( 'assets/css/main-editor.min.css' );
// into functions.php
add_theme_support( 'body-open' );
// into header.php
<?php wp_body_open(); ?>
// into functions.php
$logo_width = 120;
$logo_height = 90;
// If the retina setting is active, double the recommended width and height.
if ( get_theme_mod( 'retina_logo', false ) ) {
$logo_width = floor( $logo_width * 2 );
$logo_height = floor( $logo_height * 2 );
}
add_theme_support(
'custom-logo',
array(
'height' => $logo_height,
'width' => $logo_width,
'flex-height' => true,
'flex-width' => true,
)
);
// Use in theme files
<?php the_custom_logo();?>