Snippi
A super awesome snippet tool.
- 1.
<?php - 2.
- 3.
$content .= '<div class="share-this group">' . - 4.
'<span class="share">' . __('Share →', 'onioneye') . '</span>' . - 5.
'<div><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal">Tweet</a></div>' . - 6.
'<div class="plusone"><g:plusone size="medium" href="'.get_permalink().'"></g:plusone></div>' . - 7.
'<div class="facebook-like-button">' . - 8.
'<iframe src="http://www.facebook.com/plugins/like.php?href='. urlencode( get_permalink( $post->ID ) ) . '&layout=button_count&show_faces=false&width=200&action=like&colorscheme=light&height=21"' . 'scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px; height:21px;" allowTransparency="true"></iframe>' . - 9.
'</div>' . - 10.
'</div>'; - 11.
- 12.
echo $content; - 13.
- 14.
?>