Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

Så här gör du dina videoklipp responsiva i WordPress med FitVids

När du embedar en video i WordPress är dessa videoklipp som standard eller ej responsiva. Med ökningen av responsiva WordPress-teman kommer användare som besöker din site på mindre vyer att se videoklipp som är utsträckta och oproportionerliga. I den här artikeln kommer vi att visa you hur du gör dina videoklipp responsiva i WordPress med FitVids.

Default non-responsive and responsive video embeds in WordPress

FitVids är ett jQuery plugin som allow you att göra dina videoklipp embeds responsiva. Om du vill använda det på din WordPress site, då allt du behöver göra är att installera och aktivera FitVids för WordPress plugin. Efter aktivering måste du gå till Appearance ” FitVids och enter en CSS-väljarklass. WordPress lägger automatiskt till .post class till artiklarna, så du kan bara använda den.

FitVids for WordPress plugin settings

Det är all, save dina ändringar och preview din site. You would need to re-size browser screen to see videos adjusting themselves accordingly.

Tutorial för video

Subscribe to WPBeginner

Om du inte gillar videoklippet eller behöver fler instruktioner, fortsätt då att läsa.

Lägg till FitVids manuellt för att göra dina videoklipp responsiva i WordPress

Om du inte vill installera FitVids för WordPress plugin, kan du lägga till FitVids jQuery plugin manuellt. Det första du behöver göra är att downloada och extrahera FitVids jQuery plugin till din dator. Nu måste du uploada den extraherade FitVids.js-master foldern till ditt temas js directory.

Du måste ansluta till din website med hjälp av en FTP-klient som Filezilla och öppna din theme directory. Det är möjligt att ditt WordPress-tema kanske inte har en js-folder. Om den inte finns där måste du skapa en och sedan uploada FitVids.js-master folder från din dator.

Inuti js-foldern måste du skapa en new fil och namnge den FitVids.js. Edit den här filen och klistra in den här koden i den.

(funktion ($) {
  $(document).ready(function(){
    // Target your .container, .wrapper, .post, etc.
    $(".post").fitVids();
  });
  
  })(jQuery);

Ovanstående kod säger till FitVids att leta efter .post CSS väljarklass. Nu när du har FitVids redo är det dags att på rätt sätt add to javascripts i ditt WordPress theme.

Helt enkelt, copy and paste följande kod i ditt temas functions.php-fil:

wp_enqueue_script('fitvids', get_template_directory_uri() . '/js/FitVids.js-master/jquery.fitvids.js', array('jquery'), '', TRUE); 

wp_enqueue_script('fitvids-xtra', get_template_directory_uri() . '/js/FitVids.js', array(), '', TRUE);

När du har gjort det är du klar. Du har utan problem gjort dina WordPress videoklipp responsiva.

Vi hoppas att du tyckte att den här artikeln var användbar. För återkoppling och frågor är du välkommen att lämna en kommentar under eller gå med oss på Twitter och Google+.

Avslöjande: Vårt innehåll stöds av våra läsare. Det innebär att om du klickar på några av våra länkar, kan vi tjäna en provision. Se hur WPBeginner finansieras, varför det är viktigt, och hur du kan stödja oss. Här är vår editoriala process.

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

Den ultimata WordPress-verktygslådan

Få GRATIS tillgång till vår verktygslåda - en samling WordPress-relaterade produkter och resurser som varje professionell användare bör ha!

Reader Interactions

16 kommentarerLämna ett svar

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

    • WPBeginner Support says

      We will be sure to take a look and consider alternatives when we next update this post :)

      Administratör

  2. smithy says

    Not perfect, but with Jetpack, and WP ’out of the box’, this css will make youtube video embeds fit 100% content width responsively – requiring no plugins etc. so very ’compact’. The ’padding’ keeps the aspect ratio.

    span.embed-youtube {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 18px; height: 0; overflow: hidden;
    }

    span.embed-youtube iframe,
    span.embed-youtube object,
    span.embed-youtube embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }

    If it helps anyone.

  3. Flemming says

    This works perfectly for me (self hosted WP site). I originally used a plugin called Advanced Responsive Video Embedder which is really good but it didn’t play nicely with OptimizePress plugin.

    The FitVids plugin does exactly what I need with no problems (so far!) – thanks so much for writing this post, saved me a headache!

    • Anthony baker says

      OH, it seems this article is for wordpress.org. So confusing. So if I have the premium version of WordPress.com can I add this plugin?

  4. Gabor says

    The other thing is that,in case i set .post-entry /that is for me/

    than all the post will be responsive and the amazon widget that i add will be too.Which expands on the whole post…any workaround?

  5. flashbytes says

    Is there a way to avoid multiple new js files? Wouldn’t it be possible to add this js (both files) to one that is already being loaded by default, so the page load doesn’t suffer as much as it would, if there were three files instead of one?

  6. Rob says

    Thanks!!!! adding the

    .post, .page

    into the CSS selector worked great for me and the pages I have videos on…I have yet to add a blog post but I’m sure it should work fine with that since it worked for me on my pages

    THANKS!!!!

  7. Michael Boll says

    Thanks for this great tip.

    Do you know of a plugin that will allow video to be seen on an ipad?

    We are a school using WOrdpress like crazy (self hosted) but when we upload video to our wordpress sites, it cannot be seen on an iPad.

    Looking for a plugin to fix this. Any suggestions?

    We can view all other videos on an iPad, just not ones hosted on our own wordpress server. Not sure why it does not render in HTML 5.

    Thanks,

    Mike

    • WPBeginner Support says

      Michael, We think users should never upload videos to WordPress. We think embedding videos from a source like YouTube or Vimeo are a better alternative. However, if you must upload video, then WordPress comes with the video shortcode since version 3.6. Your videos must be in iPad supported format like mp4, m4v, ogv, mov, etc. You can also use a program like WinFF to convert your videos into iPad supported format.

      Administratör

  8. Denis McCaul says

    I have since researched and found that adding
    .post, .page
    rather than just .post means it now works for me on Posts and Pages.
    Any solutions to the incompatability with Plugin ”Lazy Load for Videos” greatly appreciated.
    Thanks, Denis

  9. Denis McCaul says

    I installed the plugin and followed your set up instructions, good news and bad.
    Good news, it works.
    Bad news
    1. It is not compatible with the Plugin ”Lazy Load for Videos”. I had to deactivate that one for it to work. So page now takes longer to load especially if multiple videos.
    2. I added the .post CSS selector as advised in the settings. This makes it work on Blog posts but not on Video’s embedded on Pages. If you change .post to .page instead it will thenl work on pages but not posts.
    Any way to fix these problems?
    Thanks, Denis

Lämna ett svar

Tack för att du väljer att lämna en kommentar. Tänk på att alla kommentarer modereras enligt våra policy för kommentarer, och din e-postadress kommer INTE att publiceras. Vänligen använd INTE nyckelord i namnfältet. Låt oss ha en personlig och meningsfull konversation.