Skip to content

Instantly share code, notes, and snippets.

@bigdigital
Last active February 20, 2018 09:50
Show Gist options
  • Save bigdigital/33ce10d3bebd874cb33f7fdc4397d769 to your computer and use it in GitHub Desktop.
Save bigdigital/33ce10d3bebd874cb33f7fdc4397d769 to your computer and use it in GitHub Desktop.
The7 change logo url
function my_presscore_display_the_logo_url($url) {
$url = 'http://example.com';
if ( presscore_is_microsite() && ( $m_url = get_post_meta( $post->ID, '_dt_microsite_logo_link', true ) ) ) {
$url = $m_url;
}
return $url;
}
add_filter( 'presscore_display_the_logo-url','my_presscore_display_the_logo_url', 10 ,1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment