Hide user name user in comments

PHOTO EMBED

Tue May 10 2022 19:45:42 GMT+0000 (Coordinated Universal Time)

Saved by @satinbest #php

//hide username in comments
function remove_comment_author_class($classes)
{
	foreach ($classes as $key => $class) {
		if (strstr($class, "comment-author-")) {
			unset($classes[$key]);
		}
	}
	return $classes;
}
add_filter('comment_class', 'remove_comment_author_class');
content_copyCOPY

wordpress show user name in comments

https://phpgeek.xyz