Skip to content

Instantly share code, notes, and snippets.

@rahularyan
Created December 10, 2017 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahularyan/0f0e08214e008dd9c76827adf15593e6 to your computer and use it in GitHub Desktop.
Save rahularyan/0f0e08214e008dd9c76827adf15593e6 to your computer and use it in GitHub Desktop.
<?php
function ap_ap_vote_btn_html( 'ap_vote_btn_html', $html, $post ) {
$html = str_replace( 'apicon-thumb-up', 'fa fa-angle-double-up', $html );
// $html = str_replace( 'apicon-thumb-down', 'fa fa-angle-double-up', $html );
return $html;
}
add_filter( 'ap_vote_btn_html', 'ap_ap_vote_btn_html', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment