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 lägger du till en officiell delningsknapp för LinkedIn i WordPress

Vill du add to den officiella delningsknappen för LinkedIn i WordPress? Det finns många tillägg för sociala medier som låter dig lägga till delningsknappar, men de flesta av dem använder inte de officiella knapparna. I den här artikeln visar vi dig hur du lägger till den officiella delningsknappen för LinkedIn i WordPress.

Adding LinkedIn share button in WordPress

Lägga till den officiella delningsknappen för LinkedIn i WordPress

För denna tutorial måste du editera dina WordPress temafiler. Om du inte har gjort det tidigare kan du kontrollera vår guide om hur man copy and paste kod i WordPress.

Först måste du besöka LinkedIn Share Plugin page. You will be asked to select your website’s language and the button style you want to use.

Du kan lämna URL-fältet tomt eftersom delningsknappen automatiskt kan hämta sidans URL.

Därefter måste du klicka på knappen ”Get Code” för att kopiera din kod för delningsknappen LinkedIn.

Copy the LinkedIn share button code

Nu när vi har delningsknappen kan vi lägga till de officiella knapparna på din site i WordPress.

Display LinkedIn Share Button in WordPress Posts and Pages

Om du vill visa knappen för delning av LinkedIn före innehållet i ditt post kan du använda följande kod. Du måste copy and paste den här koden i ditt temas functions.php-fil eller i ett site-specifikt plugin.

function wpb_linkedin_share_before($content) { 
// Share code you copied from LinkedIn goes here
$sharecode .= '<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US</script>
<script type="IN/Share" data-counter="top"></script>'; 
$newcontent = $sharecode .$content; 
return $newcontent; 
} 
add_filter('the_content', 'wpb_linkedin_share_before');

You can save your changes and visit your website to see it in action.

LinkedIn Share button in action

Om du vill visa knappen för delning efter innehållet i ditt post måste du lägga till följande kod istället.


function wpb_linkedin_share_after($content) { 
$sharecode .= '<script src="//platform.linkedin.com/in.js" type="text/javascript"> lang: en_US</script>
<script type="IN/Share" data-counter="top"></script>'; 
$newcontent = $content . $sharecode; 
return $newcontent; 
} 
add_filter('the_content', 'wpb_linkedin_share_after');

Du kan också lägga till koden för delningsknappen LinkedIn som du kopierade tidigare direkt i en WordPress custom HTML-widget. Besök bara sidan Customize ” Widgets och lägg till widgeten ’Custom HTML’ i en sidebar.

Lägg sedan till din LinkedIn-delningsknappskod i den anpassade HTML-widgeten och klicka på save-knappen för att lagra dina ändringar.

Linkedin button in a sidebar widget

You can now visit your website to see it in action.

LinkedIn share button in sidebar

Vi hoppas att den här artikeln hjälpte dig att lära dig hur du enkelt kan lägga till den officiella delningsknappen LinkedIn i WordPress. Du kanske också vill se vår lista över de bästa LinkedIn-tilläggen för WordPress.

Om du gillade den här artikeln, vänligen prenumerera på vår YouTube-kanal för WordPress video tutorials. Du kan också hitta oss på Twitter och Facebook.

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

29 kommentarerLämna ett svar

  1. Syed Balkhi

    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!

  2. Sanket Bhardwaj

    Hey, Thanks for providing this code. I have added this button on my website but now when i want to remove this It came back again and again. I have removed the code from functions.php but it came again and again.
    Please help Me.

  3. Gabriela

    Anyone know why when you share your blog here in Wordpress to LinkedIn, there is no picture attached? I do have one but it disappears when I try to share it to LinkedIn. I shared it in Facebook and Twitter and it works good but not in LinkedIn, The text appears good but no picture. I don’t get it. Tips? Thank you!

  4. Emily

    Does anyone know of a way to add the LinkedIn share button to a ”free” wordpress, for which I own the domaine? Not sure if this matters, but I think maybe the other company is ”hosting” the wordpress page. Anyway, I’ve tried the text widget and adding the html to the end of a blog post. Don’t think either is working because I just get a weird looking hyperlink that takes someone to a page of text….

  5. Electra Ford

    Hi,

    I’ve added the code but it’s not showing for me. Any new updates on how to get the LinkedIn share button to display?

    Thanks

  6. sinhrakesh

    I used below codes in the Custom Codes section to add Google+ and Linkedin Share buttons on my WP Blog (www.maintec.com/blog):

    Google+

    <div class=”sharer”><script type=”text/javascript” src=”https://apis.google.com/js/plusone.js”></script> <g:plusone size=”tall”></g:plusone></div>

    Linkedin

    <div class=”sharer”><script type=”text/javascript” src=”http://platform.linkedin.com/in.js”></script><script type=”in/share” data-url=”<?php the_permalink(); ?>” data-counter=”top”></script></div>

    Google+ Button is working fine but Linkedin Share isn’t getting the desired result upon clicking… Can you please advise whats wrong where?

  7. wpbeginner

    @ThomasRand-Nash No you cannot.

  8. ThomasRand-Nash

    can you change the sizing of the like button?

  9. Crysislevel

    buttons tutorials are my fav. unfortunately i dont use linkedin that much! :(

  10. wpbeginner

    @SJCParis No you cannot use this on free WordPress.com sites…

  11. SJCParis

    Can I put this button on a free wordpress blog?

  12. wpbeginner

    You are welcome. Yes horizontal one works great, but if you have a floating share box like ours, then the vertical share box is good too.

  13. Kavita

    Thanks for the code. I like the horizontal with count ideal for my blog.

  14. Jeremy Victor

    can you tell me how to add this LinkedIn share button to your Smart Sharing plugin?

    Thanks

    • Editorial Staff

      Copy and paste the LinkedIn script code that we share in this article in the custom code section…

      Administratör

      • Holly

        Thanks for this. I pasted the code in the custom code section, but it’s not working…says ”there’s a problem performing this action.” Any help would be greatly appreciated.

  15. Keith Aul

    I’m not to sure what you mean by the following?
    To add the Official Linkedin Share button simply open up a theme file of your choice (single.php etc) and add the following code within the Post Loop

    I don’t want to break anything on my site so I want to be sure I’m able to find the right file and open/edit it. Where would I find the theme file in my dashboard and where in the file do I post the code?

    • Editorial Staff

      You will find the theme file in your theme’s folder wp-content/themes/yourthemename/ < Editor and edit single.php file. If you have no knowledge regarding WordPress, then we recommend that you wait till a plugin comes out.

      Administratör

    • Editorial Staff

      Plugins are probably built and are in the review process to get live in the repository.

      Administratör

  16. Dana

    Thanks, great article! Where’s your share button? ;)

  17. Piet

    Finally LinkedIn did this, a week too late though, but I managed to make something similar for myself.
    Next time I need it, I will just grab your code, thanks!

    • Jose Joel

      The Share This Plugin have the option to add the LinkedIn Button as simple as writing linkedin the editing section of the plugin…and this one have count… ;)

      Note: I’m not the developer of this plugin, neither work for them, I’m only a regular user… :)

  18. Jon Bishop

    I’m happy LinkedIn finally did this. I tried to use their API to make my own for the Socialize plugin but it ended up being a pain. I was able to finally use this code to update the plugin with the new LinkedIn button.

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.