Skip to content

Instantly share code, notes, and snippets.

View tripex's full-sized avatar

GetWebbed tripex

  • GetWebbed
  • Denmark
View GitHub Profile
@tripex
tripex / custom-logo.php
Created February 23, 2018 13:18 — forked from neilgee/custom-logo.php
Using Custom Logo with Genesis via Customizer
<?php
add_theme_support( 'custom-logo', array(
'height' => 240, // set to your dimensions
'width' => 240,
'flex-height' => true,
'flex-width' => true,
) );