Knowledge Base

How Can We Help?

Adding Official LinkedIn Share Button in WordPress

You are here:

 

On this tutorial, we’re going to talk about, methods to add the LinkedIn share button to your WordPress web site. LinkedIn is knowledgeable social community that lets you join professionals in your business. It lets you show your LinkedIn profile in your WordPress website to draw the folks. Enabling LinkedIn share button enable you to share your web site contents inside larges et skilled community. With this, you may develop your corporation. You may refer the next steps so as to add the LinkedIn share button to your web site for selling your web site content material.

 

1) Go to the LinkedIn Plugin Generator web page. Browse the web site utilizing the beneath hyperlink.

https://developer.linkedin.com/plugins/share

 

2) Enter your WordPress web site URL and select its language from the dropdown Language.

Linkedin Share

 

3) Click on the button “Get Code”, then you may see a code snippet seem beneath. Copy that code.

 

4) Now login to your WordPress dashboard and Navigate to Look >> Widgets.

 

5) Create a brand new take a look at widget and paste the LinkedIn share button code into this textual content field and click on the button “Save”.

Adding Official Linkedin Share Button In Wordpress

 

6) If you want to point out the button beneath or above your posts, then login to your cPanel and choose “File Supervisor”.

Linkedin Share

 

7) Go to the doc root of that specific web site and find “features.php” file below wp-content >> themes folder.

 

8) Proper-click on the” features.php” file and click on on “Edit”.

 

Linkedin Share

 

 

9) If you happen to want to present the LinkedIn share button After your put up, enter the next code within the backside of the web page:

  perform linkedin_share_after($content material)

  $sharecode .= ‘// Paste Your LinkedIn share button code right here’;

  $newcontent = $content material . $sharecode;

   return $newcontent;

  

   add_filter(‘the_content’, ‘linkedin_share_after’);

Be aware: Enter the LinkedIn share button code snippet within the second line.

 

10) If you happen to want to present the LinkedIn share button Earlier than your put up, enter the next code within the backside of the web page:

  perform linkedin_share_before($content material)

  $sharecode .= ‘// Paste Your LinkedIn share button code goes right here’;

  $newcontent = $sharecode .$content material;

  return $newcontent;

 

 add_filter(‘the_content’, ‘linkedin_share_before’);

Be aware: Enter the Linkedin share button code snippet within the second line.

 

11) Click on the “Save” button.

 

If you happen to want any additional assist, please do attain our help division.

 

 

Leave a Comment