Last active
December 20, 2015 18:29
-
-
Save donaldallen/6176512 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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