Skip to content

Instantly share code, notes, and snippets.

@nielsenrc
Last active September 17, 2015 19:30
Show Gist options
  • Save nielsenrc/ecbbe956936ff915d462 to your computer and use it in GitHub Desktop.
Save nielsenrc/ecbbe956936ff915d462 to your computer and use it in GitHub Desktop.
Wordpress | How to Output a PHP Include in a Shortcode
<?php
ob_start();
include ‘file.php';
$output = ob_get_clean();
$output = str_replace(array("\r", "\n"), '', $output);
return $output;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment