Skip to content

Instantly share code, notes, and snippets.

@Mamaduka
Created June 22, 2012 11:27
Show Gist options
  • Save Mamaduka/2972198 to your computer and use it in GitHub Desktop.
Save Mamaduka/2972198 to your computer and use it in GitHub Desktop.
Facebook, display logo as image.
<?php
function canvas_logo_open_graph_meta() {
if ( ! is_single() || ! is_page() )
return;
if ( isset($woo_options['woo_logo']) && $woo_options['woo_logo'] )
echo '<meta property="og:image" content="' . esc_url( $woo_options['woo_logo'] ) . '" />';
}
add_action( 'wp_head', 'canvas_logo_open_graph_meta' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment