Skip to content

Instantly share code, notes, and snippets.

@donaldallen
Last active December 20, 2015 18:29
Show Gist options
  • Save donaldallen/6176512 to your computer and use it in GitHub Desktop.
Save donaldallen/6176512 to your computer and use it in GitHub Desktop.
public function display_content()
{
ob_start();
include_once(plugin_dir_path(__FILE__) . 'views/public.php');
$output_string = ob_get_contents();
ob_end_clean();
return $output_string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment