Skip to content

Instantly share code, notes, and snippets.

@benfavre
Created March 23, 2018 15:46
Show Gist options
  • Save benfavre/863f66519c33044129394ea9828ea794 to your computer and use it in GitHub Desktop.
Save benfavre/863f66519c33044129394ea9828ea794 to your computer and use it in GitHub Desktop.
Shortcode
<?php
function listingAvis ()
{
ob_start ();
?>
Cool
<?php
$output_string = ob_get_contents ();
ob_end_clean ();
return $output_string;
}
add_shortcode ('listing-avis', 'listingAvis');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment