Skip to content

Instantly share code, notes, and snippets.

@collegeman
Created March 28, 2012 02:40
Show Gist options
  • Select an option

  • Save collegeman/2223047 to your computer and use it in GitHub Desktop.

Select an option

Save collegeman/2223047 to your computer and use it in GitHub Desktop.
<?php
add_filter('sharepress_og_tags', '__my_sharepress_og_tags', 10, 3);
function __my_sharepress_og_tags($og, $post, $meta) {
$og['og:title'] = 'My custom title';
$og['og:description'] = 'My custom description';
return $og;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment