Skip to content

Instantly share code, notes, and snippets.

@JeppeSigaard
Last active March 29, 2016 07:58
Show Gist options
  • Save JeppeSigaard/ec5c2f7212fc6e418704 to your computer and use it in GitHub Desktop.
Save JeppeSigaard/ec5c2f7212fc6e418704 to your computer and use it in GitHub Desktop.
<?php
/*
Plugin name: WP like button arkiv addon
Description: Tilføj like button på arkivsider
*/
add_filter('[INDSÆT PASSENDE FILTER]','jio_do_wp_like_filter');
function jio_do_wp_like_filter($content){
if(function_exists('fb_like_button')){
return $content . fb_like_button(); // eller fb_like_button() . $content; for at indsætte før, self. :-)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment