Skip to content

Instantly share code, notes, and snippets.

@bologer
Last active November 3, 2018 09:44
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 bologer/dc88da575da339bebdcb5980545c6978 to your computer and use it in GitHub Desktop.
Save bologer/dc88da575da339bebdcb5980545c6978 to your computer and use it in GitHub Desktop.
Add custom classes to #comments for AnyComment
<?php
function anycomment_custom_js() {
?>
jQuery(document).on('ready', function($) {
$('#comments').addClass('gridlove-comments gridlove-box box-inner-p-bigger');
});
<?php
}
add_action('wp_footer', 'anycomment_custom_js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment