LinkedIn provide an online tool to generate a company profile widget for use on your website. While not commonly used, we've seen it convert well in professional circles. The code in this article will provide the necessary shortcode to embed the Widget into a WordPress post or page. There are three primary types of Widgets: an inline widget, icon with name, and icon. Our shortcode provides for all three. The code is almost identical to our article showing how to add a LinkedIn Personal Profile Widget into your WP website.
Note (November 2020): Parts of this code are broken. We'll update it when time permits.
The Result
The result of the primary profile widget is as follows. Shortcode used is [linkedcompany style="1"]
. The style="1" forces the container to be centered. No attributes are defined since they're included in the shortcode function.
To align the container within text, use [linkedcompany style="1" align="right"]
(or left
).
The inline icon format is useful when referencing an organisation or company in text. For example, the shortcode of [linkedcompany type="icon"]
returns
. Hover over the icon and my personal profile container will be returned to the screen. The same inline inclusion can be used with the icon and name format. Shortcode of [linkedcompany type="iconname"]
returns:
. By default no styling is applied. You can force alignment and padding by simply adding style="1"
.
Feel free to follow our lonely little company page .
WordPress Shortcode
Copy and paste the WordPress function into your theme's functions.php
file or, if you sensibly have one installed, your custom functions plugin.
If you require shortcode to work in a sidebar widget, you'll have to enable the functionality with a filter. If you're using our custom functions plugin, you'll have that feature enabled by default.
Shortcode Attributes
The following shortcode attributes are available.
profile
name
type
type
may be inline
, iconname
, or icon
as demonstrated above.format
format
determines if a hover
or click
is required to return the profile badge. By default we use hover. Use format="click"
to alter.style
style="1"
to apply styles.padding
align
Download
Title: LinkedIn Company Profile Widget in WordPress (Shortcode)
Description: Add a LinkedIn company profile widget to WordPress. Returns either the inline, icon, or icon & name widget.
Download • Version 0.1, 819.0B, zip, Category: WordPress Shortcodes