YouTubeで埋め込みで関連動画を非表示にする方法
関連動画を非表示にする方法
ループさせて関連動画を非表示にする方法
埋め込みコードの末尾にパラメータ―「?loop=1&playlist=foobar」を追加する
【修正前】元の埋め込みパターン
<iframe width="560" height="315" src="https://www.youtube.com/embed/I6ESlW_xxxx?si=xDaIqHTo9pwhkvaj" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
【修正後】↓↓↓以下のように改変する↓↓↓
<iframe width="560" height="315" src="https://www.youtube.com/embed/I6ESlW_xxxx?loop=1&playlist=I6ESlW_xxxx" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
自分のチャンネル以外の関連動画を非表示にする方法
埋め込みコードの末尾にパラメータ―「?rel=0」を追加する
<iframe src="https://www.youtube.com/embed/xxxxxxx?rel=0" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>