This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'template_redirect', 'ngd_multiple_logos' ); | |
function ngd_multiple_logos() { | |
sp_remove_action('sb_header', 'sp_header_settings', 'logo'); | |
sp_add_action( 'sb_header', 'ngd_logo'); | |
} | |
function ngd_logo() { | |
// We need the $post global to determine parent_page relationships | |
global $post; |
NewerOlder