This WordPress Plugin will sky rocket your social endeavour and make your site more visible to search engines Schema micro-data search query and social network connections.
Are you tired of your site search query decreasing everyday from search engines? Do you want to show-off how many Facebook Fans or Twitter Followers you have? Want to add open-graph meta into your site without editing your template code? You all heard about schema mark-up is good for SEO right? well do you want to add this features without editing your site template code?
Let me introduce you to our new all in one social boost WordPress Plugin, Social Jet.
What’s under the hood of Social Jet?
[list type=”check”]
- Social Counter Widgets for popular social media platform such as Facebook, Twitter, Google+, YouTube and LinkedIn
- Open-graph meta for Facebook and Google+
- Facebook Fan Page Widgets
- Twitter Card Meta for Twitter
- Twitter User Timeline API 1.1 Feed Widgets
- Auto SEO Schema Mark-up for article and comments *multi-authors supported
- AddThis Social Sharing Button with tracking and publisher ID options
- Bonus! – Simple Flickr Photo Feeds widgets
[/list]
How to install Social Jet?
- Download, unzipped and upload the ‘social-jet’ folder into your WordPress ‘plugins’ folder.
- Go to your site admin dashboard -> plugins and choose Social Jet and activate it
- Setup and save all available options in newly created admin menu in dashboard -> Social Jet.
- Clear cache if you have any cache plugins installed such as wp-super-cache.
Extending Social Jet Plugin (FAQ)
[accordian]
[accordian_list title=”1. Optimize Title and Descriptions”]
The Social Jet WordPress Plugin allowed some level of extension from other plugin code. Take for example if you have All in One SEO Pack installed, you can use the aioseo plugin title and descriptions for social jet open-graph meta title and descriptions. Just simple add this to your theme functions.php
For Home Title and Single Post/Page Title
[php]function add_dez_aioseo_title_meta() {
global $post,$aioseop_options;
$post_aioseo_title = get_post_meta($post->ID, ‘_aioseop_title’, true);
$hometitle = $aioseop_options[‘aiosp_home_title’];
if ( is_singular() ) {
if ( function_exists(‘aioseop_load_modules’) && $post_aioseo_title) {
$og_title = $post_aioseo_title;
} else {
$og_title = esc_attr( get_the_title() );
}
} else {
if ( function_exists(‘aioseop_load_modules’) && $hometitle) {
$og_title = $hometitle;
} else {
$og_title = get_bloginfo(‘name’);
}
}
return $og_title;
}
add_filter(‘sj_opengraph_title’,’add_dez_aioseo_title_meta’);[/php]
For Home Description and Single Post/Page Descriptions
[php]function add_dez_aioseo_desc_meta() {
global $post,$aioseop_options;
$post_aioseo_desc = get_post_meta($post->ID, ‘_aioseop_description’, true);
$homedesc = $aioseop_options[‘aiosp_home_description’];
if ( is_singular() ) {
if ( function_exists(‘aioseop_load_modules’) && $post_aioseo_desc) {
$og_desc = $post_aioseo_desc;
} else {
$og_desc = esc_attr( get_the_excerpt() );
}
} else {
if ( function_exists(‘aioseop_load_modules’) && $homedesc) {
$og_desc = $homedesc;
} else {
$og_desc = get_bloginfo(‘description’);
}
}
return $og_desc;
}
add_filter(‘sj_opengraph_desc’,’add_dez_aioseo_desc_meta’);[/php]
[/accordian_list]
[accordian_list title=”2. Change Social Counter Icons”]
Open wp-content/plugins/social-jet/inc/social-counter/images/ you’ll see a list of images like sc-facebook.png, sc-twitter.png and more…
Just upload the same image name and extension into your current theme ‘images’ folder and the plugin will use the first detected social images inside your current theme ‘images’ folder.
[/accordian_list]
[accordian_list title=”3. Change Footer Schema Data”]
Add this to your theme functions.php
[php]function dez_sj_add_schema_in_footer() {
$schema_pub .= ‘<span itemscope="" itemtype="http://schema.org/WPFooter">’;
$schema_pub .= ‘<span class="post-schema">’;
$schema_pub .= ‘<span itemprop="name">MY HOME TITLE</span>’;
$schema_pub .= ‘<span itemprop="description">MY HOME DESCRIPTIONS</span>’;
$schema_pub .= ‘<span itemprop="url">MY HOME URL</span>’;
$schema_pub .= ‘<span itemprop="copyrightYear">2003-2013</span>’;
$schema_pub .= ‘</span></span>’;
return $schema_pub;
}
add_filter(‘sj_get_footer_schema’, ‘dez_sj_add_schema_in_footer’);[/php]
[/accordian_list]
[accordian_list title=”4. Recommended for bug free plugin usage”]
If you are using Mesocolumn WordPress Theme, delete schema.php and ‘addons’ folder.
[/accordian_list]
[accordian_list title=”5. How to change the default no image?”]
add this to your theme functions.php or custom-functions.php
[php]function dez_sj_add_opengraph_home_img() {
return ‘http://wwww.site.com/wp-content/uploads/your-img.ext’;
}
add_filter(‘sj_opengraph_home_image’, ‘dez_sj_add_opengraph_home_img’);[/php]
[/accordian_list][/accordian]
Great blog here! Also your website loads up fast! What web host are you
using? Can I get your affiliate link to your host? I wish my site loaded
up as quickly as yours lol
I have make php now of 5.6 now go also twitter.
But the social button over the content don´t want
i can´t see it also not.
I have enable “AddThis Social” but nothing to see
Must i also have a “AddThis Publisher ID”?
Maybe you have a idea?
Thanks
Jörg
yes, new addthis api need pub id.
The circles from google+ show not, what can it be?
Have you a idea?
Now i can also not see the followers from twitter, is everytime count 0
did you save the twitter dev api? i would recommend try other social plugin, the social jet plugin had some deprecated functions and not PHP7 compatible at this version.
google+ count on this plugin is currently deprecated.
First, thank you for the awesome plug-in!
I use Mesocolumn theme with Social Jet plug-in. I enabled ‘first image grab for featured thumbnails’ and inserted an image in the post only. When click share via Facebook, the image is not displayed. I inserted an image and set up as a featured image for a test, but same, that image is not displayed either for Facebook sharing. Please advise how to display an image with the post on Facebook when click the sharing icon?
try debug it first
https://developers.facebook.com/tools/debug/
Hi Richie,
Thanks! It’s magically working after debuting the URL of the post. The image of that particular post is displayed on Facebook through the share icon, but is ‘debug (through the link tool I just did)’ required every time when I share any particular post from the website? Is there any permanent fix?
not sure, if debug pass then sharing shouldn’t have error and there’s no need to debug everytime.
although if you had just publish the post, and share it within second, it might need to refresh a bit before it share properly.