Skip to content

Instantly share code, notes, and snippets.

View sterndata's full-sized avatar
🐈
napping with cats

Steven Stern sterndata

🐈
napping with cats
View GitHub Profile
/*
* code from http://www.wpbeginner.com/wp-tutorials/how-to-add-twitters-official-tweet-button-in-wordpress/
*/
function sds_enqueue_twitter_button_script() {
wp_enqueue_script('twitter-button', '//platform.twitter.com/widgets.js');
}
add_action( 'wp_enqueue_scripts', 'sds_enqueue_twitter_button_script' );
function sds_tweet_button($content) {