Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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