Snippets repository for WordPress developpers

Browse
// 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',
  ),
) );
}
Tags:
// 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'
  ),
) );
Tags: ,

Categories

Tags