• Hi, great plugin by the way. Is there a way (maybe in functions.php) to apply an incremental id or surrounding div to the Mixcloud iframes? They always seem to be placed at the top of a page and I’d prefer to place them at the bottom of my content. Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Rodolphe MOULIN

    (@shmuel83)

    Hi, yes that’s very easy

    Replace that

    echo $dom;
    if($atts["playlist"]=="1") {
     echo'<div id="plwrap"><ul id="plList">'.$track.'</ul></div>';
    }

    By that

    if($atts["playlist"]=="1") {
     echo'<div id="plwrap"><ul id="plList">'.$track.'</ul></div>';
    }
    echo $dom;
Viewing 1 replies (of 1 total)
  • The topic ‘How to apply incremental id or surrounding div to iframes?’ is closed to new replies.