Vimeo Gallery
// Add Shortcode function vimeo_gallery_sc( $atts , $content = null ) { // Attributes extract( shortcode_atts( array( 'link' => '', 'title' => '', ), $atts ) ); // Code return '<iframe class="" src="' . $link . '" width="500" height="300" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <h2 class="">' . $title . '</h2> <p>' . $content . '</p>'; } add_shortcode( 'vimeo_gellery', 'vimeo_gallery_sc' );