Skip to content

Instantly share code, notes, and snippets.

@kylephillips
Last active March 20, 2025 14:30
Show Gist options
  • Save kylephillips/51fa297499729a7726debe39d5cd852e to your computer and use it in GitHub Desktop.
Save kylephillips/51fa297499729a7726debe39d5cd852e to your computer and use it in GitHub Desktop.
Customize the favorites button text HTML
<?php
/**
* Customize the Favorites Button HTML
*/
add_filter( 'favorites/button/html', 'custom_favorites_button_html', 10, 4 );
function custom_favorites_button_html($html, $post_id, $favorited, $site_id)
{
if ( $favorited ) :
$html = 'Favorited';
else :
$html = 'Unfavorited';
endif;
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment