• This doesn’t fit in any of the other forums, so I have to post it here. Also, I used Search First, but it didn’t give me relevant results.

    Anyway, how do I tell WordPress to label anonymous posters as “Anonymous Coward”s?

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m not sure if it’s different with 1.5, but for 1.2, you edit the function comment_author(), which is in the file

    wp-includes/template-functions-comment.php

    around line 107, change
    echo "Anonymous";
    to
    echo "Anonymous Coward";

    edit – they’re actually single quotes around the word, not double ones like it’s posted here..

    Thread Starter woddfellow2

    (@woddfellow2)

    How do I change it for WordPress 1.5.1.2?

    comment-functions.php
    line 143
    function get_comment_author() {
    global $comment;
    if ( empty($comment->comment_author) )
    $author = 'Anonymous';

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Anonymous Coward’ is closed to new replies.