Skip to content

Instantly share code, notes, and snippets.

View dennisaskeland's full-sized avatar

Dennis Askeland dennisaskeland

View GitHub Profile
@alana-mullen
alana-mullen / function.php
Last active August 24, 2018 06:52
How to use Google's Organisation Logo Schema.org markup with WordPress Theme Logo
function mytheme_setup() {
add_theme_support('custom-logo');
}
add_action('after_setup_theme', 'mytheme_setup');