Home

Remove Related Videos from YouTube Embed

Hide the “more videos” section on an embedded YouTube video with this quick tip.

Something I find obnoxious is when I embed a video in an article that is meant to be helpful and it recommends related videos when paused or ended. This is often distracting to the purpose of embedding some specific video. And it puts a lot of blind trust in YouTube to find videos that would supplement the one I’m sharing.

Fortunately, there’s a way around this. You can append ?rel=0 to the embed URL and the related videos will not appear.

For example:

<iframe
src="https://www.youtube.com/embed/Ljj1wGFJqPY?rel=0"
title="YouTube video player"
frameborder="0"
allowfullscreen
>
</iframe>

Here’s the difference:

Embedded YouTube Related Videos Comparison

Demo

You can see this in action here. Play and pause both videos. You’ll see related videos in the top one, but not the bottom one.

Let's Connect

Keep Reading

Delete Entire Word in Terminal and iTerm2

Ever find yourself holding down the Delete key on the command line? Here's a way to work faster.

Feb 08, 2021

Use Cmd+K Terminal Trick to Stay Organized

Aside from opening new tabs, the Meta+k shortcut is the one I use most frequently when working on the command-line.

Jan 26, 2021

Use Commit Hashes when Sharing GitHub URLs

Sharing GitHub commit hashes directly works for ephemeral uses, but there is a safer way for links that need to last.

Dec 15, 2022