Skip to content

Instantly share code, notes, and snippets.

@andi1984
Forked from marczobec/vine.php
Last active August 29, 2015 14:17
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 andi1984/d578c3dc57731fd7758b to your computer and use it in GitHub Desktop.
Save andi1984/d578c3dc57731fd7758b to your computer and use it in GitHub Desktop.
<?php
kirbytext::$tags['vine'] = array(
'attr' => array(
'size'
),
'html' => function($tag) {
$vineURL = $tag->attr('vine');
$size = $tag->attr('size', '300');
return '<iframe src="' . $vineURL . '/' . 'embed/simple" width="' . $size . '" height="' . $size . '" frameborder="0" class="vine-embed"></iframe><script src="https://platform.vine.co/static/scripts/embed.js"></script>';
}
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment