How to add additional e-mail addresses to WordPress comment notifications

By default, WordPress will notify only the actual post author if there are new comments on their post. But what if you want to notify additional people about every comment posted on the website? Like site editors, for example?

This is just a quick filter you can use in this case:

function filter_comment_notification_headers( $message_headers )
{
    $notify_other_people = array(
        '"John Smith" <john.smith@email.address>',
        '"Jane Smith" <jane.smith@email.address>'
    );

    $message_headers .= "\n" .
        'CC: ' . implode(', ', $notify_other_people );

    return $message_headers;
}
add_filter('comment_notification_headers', 'filter_comment_notification_headers');
Posted in News | Tagged , , , , | 4 Comments

Everybody rejoice – it’s that time of year again!

It’s my birthday.

I’m 31.

I love the world, I hate the world.

Gonna go take a shower now.

In other news:

WordPress File Gallery 1.5RC1 is out.

Be a sport and help me test the plugin, OK? I’ve been working on it for almost two years now, and I think it’s ready to be “set free” :)

cheers ;)

Posted in News | Tagged , , | Leave a comment

It’s twenty ten and so is this theme

I grew tired of the old theme.

Also, I might post some new music next week. Maybe even some very old music. Like, ten years old. We’ll see.

I’ll be 31 in 11 days, and I’m quite looking forward to it.

And how about those Winchester boys wondering around in Heaven, huh? God, I love that show :)

And happy Easter, to those of you who celebrate it.

Posted in News | Tagged , , , | Leave a comment

File Gallery WordPress plugin

It’s been what? Almost a year since my last post? What the hell? :D

Anyways, I’ve been “active” on a subpage, working on my “File Gallery” plugin for WordPress.

It took me a while to realize that people who have subscribed to my RSS feed have no idea about this plugin because its “home” is a page. It’s not included in the feed. I’m a moron.

So, the time here is currently 0:03 and I’m very tired.

But you’ve expected some kind of lame excuse for a short post from me, so this is no surprise.

Anywho…

WordPress File Gallery plugin is ready for testing – go go go!

ps: I’m alive and well, and working at Brlog ;)

Posted in News | Tagged , , , | 2 Comments

I told you I’m gonna blog about it

It’s a beautiful day outside (although quite windy) and I will turn 30 in approximately 90 minutes.

And then all hell will break loose.

Possibly.

Not.

:|

Posted in News | Tagged , , , | 5 Comments