Skip to content

Instantly share code, notes, and snippets.

@kylephillips
Last active July 9, 2019 14:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylephillips/95ec8d93a4f96ac61461c0ec868bed5a to your computer and use it in GitHub Desktop.
Save kylephillips/95ec8d93a4f96ac61461c0ec868bed5a to your computer and use it in GitHub Desktop.
Favorites for Wordpress: Using the button CSS filter
add_filter('favorites/button/css_classes', 'favoriteButtonCss', 10, 3);
function favoriteButtonCss($classes, $post_id, $site_id)
{
$classes .= ' my-custom-class';
return $classes;
}
@rieniter
Copy link

rieniter commented Jul 9, 2019

Great, many thank you !!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment