Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created December 18, 2015 20:38
Show Gist options
  • Save kraftbj/f859fdf72b58db8d397b to your computer and use it in GitHub Desktop.
Save kraftbj/f859fdf72b58db8d397b to your computer and use it in GitHub Desktop.
Change Jetpack default OG image
<?php // remove if in an existing file.
add_filter( 'jetpack_open_graph_image_default', 'example_change_default_image' );
function example_change_default_image( $image ) {
return 'https://s0.wp.com/i/blank.jpg';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment