Skip to content

Instantly share code, notes, and snippets.

@DeskSupport
DeskSupport / functions.php
Created October 31, 2012 17:11
Genesis :: add logo from functions.php
// Add the logo to the header in Genesis
//will need to add css for this
function fws_add_logo() {
?>
<div id="logo">
</div>
<?php
}
add_action('genesis_header', 'fws_add_logo');