0 views
function video_player_shortcode($atts) { $atts = shortcode_atts( array( 'src' => '', // URL del video ), $atts, 'video_player' ); ob_start(); ?> <?php return ob_get_clean(); } add_shortcode('video_player', 'video_player_shortcode');




