Skip to content

Instantly share code, notes, and snippets.

View MehbubRashid's full-sized avatar
🙂
Keep it simple.

Mehbub Rashid MehbubRashid

🙂
Keep it simple.
View GitHub Profile
@MehbubRashid
MehbubRashid / functions.php
Last active April 13, 2021 18:00
Example of wp_list_comments callback function (for creating custom comment markup)
<?php
function example_comment_style( $comment, $args, $depth ) {
if ( 'div' === $args[ 'style' ] ) {
$tag = 'div';
$add_below = 'comment';
} else {
$tag = 'li ';
$add_below = 'div-comment';
}