asciinema.org Plugin URI: http://danixland.net/?p=3525 Version: 0.1 Author: Danilo 'danix' Macrì Author URI: http://danixland.net License: GPL2 License URI: https://www.gnu.org/licenses/gpl-2.0.html */ /* * The actual video displayed using a shortcode * @since 0.1 */ function dnxasc_display_video( $atts ) { // Attributes extract( shortcode_atts( array( 'video' => '22124', 'time' => '0', 'autoplay' => false, 'loop' => false, 'speed' => 1, 'theme' => 'monokai' ), $atts ) ); $autoplay = ( 0 != $time ) ? true : false; $videoscript = ''; return $videoscript; } add_shortcode( 'asciinema', 'dnxasc_display_video' );