获得更多博客曝光的方法之一是通过口碑广告。社交媒体让我们很容易。您可以通过在WordPress中整合社交媒体互动来鼓励您的受众群体为您的文章投票或在社交媒体网站上分享您的文章。在本文中,我们将向您展示如何为WordPress中的每个帖子添加社交媒体图标。

这是WordPress备忘单,我们将提到一些博主使用的顶级共享图标。但在你复制并粘贴每个代码之前,你需要了解它是如何工作的。

页面/帖子标题的代码

lt;?php the_title(); ?>

您的网页网址 – SEO友情网址

lt;?php the_permalink()?>

您的短品牌网址(教程)%%% %%<?php echo get_bloginfo(“url”)。“/?p =”。$ post-> ID; ?>

您当前的主题目录

<?php bloginfo(“template_directory”); ?>

我们在下面提到的每个社交媒体嵌入中使用上述代码。由于大多数人在帖子底部将其显示为迷你图标,因此您需要在主题图片库中添加这些图标,该图片库位于

/ wp-content / themes / yourthemename / images / %%% %%确保更改图像格式(.jpg,.gif,.png或其他)和样式以满足您的模板需求。

下面的代码需要粘贴在

单个中。 php

和/或 page.php 将我的帖子添加到Digg

将我的帖子添加到Digg

< a href =“http://digg.com/submit?phase=2\u0026amp;amp;url=\u0026lt;?php the_permalink()?>” rel =“nofollow”>< img src =“<?php bloginfo(”template_directory“);?> /images/digg.png”alt =“将此文章添加到Digg”/>< / a&gt ;

将我的帖子添加到Stumbleupon

< a href =“http://www.stumbleupon.com/submit?url=\u0026lt;?php the_permalink()?>& amp; title =<?php the_title();?>“ rel =“nofollow”>< img src =“<?php bloginfo(”template_directory“);?> /images/stumble.png”alt =“将此文章添加到Stumbleupon”/>< / a&gt ;

将我的帖子添加到Delicious

< a href =“http://del.icio.us/post?url=\u0026lt;?php the_permalink()?>& amp; title =<?php the_title();?>“ rel =“nofollow”>< img src =“<?php bloginfo(”template_directory“);?> /images/delicious.png”alt =“将此文章添加到Del.icio.us”/> < / a>

将我的帖子添加到Reddit

< a href =“http://reddit.com/submit?url=\u0026lt;?php the_permalink()?>& amp; title =<?php the_title();?>“ rel =“nofollow”>< img src =“<?php bloginfo(”template_directory“);?> /images/reddit.png”alt =“将此文章添加到Reddit”class =“left”/&gt ;< / a>

将我的帖子添加到Newsvine

< a href =“http://www.newsvine.com/_tools/seed\u0026amp;amp;save?u=\u0026lt;? php the_permalink()?>“ rel =“nofollow”>< img src =“<?php bloginfo(”template_directory“);?> /images/newsvine.png”alt =“将此文章添加到Newsvine”class =“left”/&gt ;< / a>

在Facebook上分享这篇文章

< a href =“http://www.facebook.com/sharer.php?u=\u0026lt;?php the_permalink();?>& t =<?php the_title();?>” target =“blank”>< img src =“<?php bloginfo(”template_directory“);?> /images/facebook.png”alt =“在Facebook上分享这篇文章”/>< / a&gt ;

在Twitter上分享这篇文章

< a href =“http://twitter.com/home?status=Reading:<?php the_title();?> – < ?php echo get_bloginfo(“url”)。“/?p =”。$ post-> ID;?>“ title =“点击将此页面发送到Twitter!” target =“_ blank”>< img src =“<?php bloginfo(”template_directory“);?> /images/twitter.png”alt =“在Twitter上分享这篇文章”/>< / a&gt ;

我们在此代码中使用您的短品牌网址。

您也可以按照本教程使用tweetmeme转推按钮。

社交媒体交互也可以通过使用像Sharethis,Sociable和Add to Any这样的着名插件合并到你的帖子中。

评论被关闭。