- Desde
- 13 Dic 2011
- Mensajes
- 1.515
¿Vas a armar un proyecto que precisa de algo que te permita agregar un video Vine rápido? Entonces, llegaste al hilo correspondiente.
Van al editor de themes del panel de administración, y en el archivo functions.php deben agregar:
PHP:
function getVine($params, $content = null) {
extract( shortcode_atts( array('width' => '100%','height' => '750'), $params) );
$code = '<iframe class="vine-embed" src="https://vine.co/v/'.$content.'/embed/simple" width="'.$width.'" height="'.$height.'" frameborder="0"></iframe>';
return $code;
}
add_shortcode('vine','getVine');
function VineScript(){
?>
<script async src="//platform.vine.co/static/scripts/embed.js" charset="utf-8"></script>
<?php
}
add_action('wp_footer', 'VineScript');
Luego lo usan así: [vine]id del vine[/vine]
* Podes declarar el ancho y alto que quieras con los parametros width y height: [vine width="anchopx" height="altopx" ]
Fuente: [BBCODE]Insertar un Vine a WordPress - Lopezito.com
Última edición: