Skip to content

Instantly share code, notes, and snippets.

@vivek-kumar-poddar
vivek-kumar-poddar / socialbuttons.php
Last active April 27, 2017 00:09
This code snippets allows users to put social media buttons on their posts. This is code snippet for java-script free social media buttons. https://wpvkp.com/add-social-media-sharing-buttons-to-wordpress-without-plugin/
<?php
// Function to handle the thumbnail request
function get_the_post_thumbnail_src($img)
{
return (preg_match('~\bsrc="([^"]++)"~', $img, $matches)) ? $matches[1] : '';
}
function wpvkp_social_buttons($content) {
global $post;