Search code examples
wordpressyoutubeamp-html

Convert short-code to YouTube link in WordPress


I Need to convert this Shortcode:

[youtube id="ElWkGqhoDfE" width="720" height="380"]

to Youtube Link like

https://www.youtube.com/watch?v=ElWkGqhoDfE

So, I need to convert it when page load in WordPress AMP

How can I do that?


Solution

  • you can use this function

    function get_shortcode($code){
    if (strpos($code, 'youtube') !== false) {
        $youtube = explode(" ", $code);
        $youId = str_replace('"', "" ,str_replace('id="', "", $youtube[1]));
        $link = 'https://www.youtube.com/watch?v='.$youId ;
        return $link;
    }
    }
    $shortcode = '[youtube id="ElWkGqhoDfE" width="720" height="380"]' ;
    echo get_shortcode($shortcode);