Skip to content

Instantly share code, notes, and snippets.

@luisfelipe-dev
Created November 9, 2016 12:02
Show Gist options
  • Select an option

  • Save luisfelipe-dev/471fa8aedd5b617f2f427f90778f4110 to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/471fa8aedd5b617f2f427f90778f4110 to your computer and use it in GitHub Desktop.
Shortcodes , Wordpress
// Definimos o gatilho 'youtube' para a função 'shortcode_youtube'
add_shortcode('caixa', 'short_code');
// Função que retorna o HTML pelo Shotcode
function short_code($atts, $content=null)
{
extract(
shortcode_atts(
array(
'url' => '',
'title' => '',
'height' => '',
'rel' => 0,
'showsearch' => 0,
'showinfo' => 0,
),
$atts
)
);
return '<div class="col-md-6">
<div class="box-diferencial-completo">
<div style="min-height:'.$height.'px" class="border-box box-diferencial"<p>'
.$content.'</p>
</div>
<img class="img-empresa" src="'.$url.'"alt="'.$title.'"/>
</div>
</div>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment