Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active October 15, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dinamiko/02a4448dc0d109674c35 to your computer and use it in GitHub Desktop.
Save Dinamiko/02a4448dc0d109674c35 to your computer and use it in GitHub Desktop.
<?php
/**
* [encuesta]
* Imprime la aplicación encuesta
*/
function encuesta_shortcode( $atts, $content = null ) {
global $encuesta_atts;
$encuesta_atts = shortcode_atts( array(), $atts );
$template = new Encuesta_Template_Loader;
ob_start();
$template->get_template_part( 'encuesta' );
return ob_get_clean();
}
add_shortcode( 'encuesta', 'encuesta_shortcode' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment