Skip to content

Instantly share code, notes, and snippets.

@IronGhost63
Created April 7, 2017 16:10
Show Gist options
  • Save IronGhost63/ca373dcb2a0439842237765b00dd79e2 to your computer and use it in GitHub Desktop.
Save IronGhost63/ca373dcb2a0439842237765b00dd79e2 to your computer and use it in GitHub Desktop.
Enable oEmbed support in wpForo
<?php
add_filter('wpforo_get_posts', 'enable_wpforo_oembed');
function enable_wpforo_oembed($content){
global $wp_embed;
foreach($content as $single){
$single['body'] = $wp_embed->autoembed( $single['body'] );
$return[] = $single;
}
return $return;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment