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: ,
// 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();?>
Tags:

Categories

Tags