Skip to content

Instantly share code, notes, and snippets.

@codeway
Created July 30, 2013 18:08
Show Gist options
  • Save codeway/6115316 to your computer and use it in GitHub Desktop.
Save codeway/6115316 to your computer and use it in GitHub Desktop.
Wordpress : functions.php : Shortcode form
add_shortcode( 'MY_SHORTCODE', 'my_shortcode' );
function my_shortcode( $attr ) {
$contents = '';
ob_start();
require_once('myfolder/show.php');
$contents = ob_get_contents();
ob_end_clean();
return '[raw]'.$contents.'[/raw]';
// Raw could be usefull to disable wordpress formatting (add <p>)
// Voir http://www.catswhocode.com/blog/10-incredibly-cool-wordpress-shortcodes => POINT 9
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment