Last active
November 3, 2018 09:44
-
-
Save bologer/dc88da575da339bebdcb5980545c6978 to your computer and use it in GitHub Desktop.
Add custom classes to #comments for AnyComment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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