skip to Main Content

WordPress Code Snippets


How to Customize bbPress Forum Notifications for Admins

If you want to send custom notifications to the admin whenever a new topic or reply is created in bbPress forums, use this PHP code snippet:

<?php
function custom_admin_notifications( $topic_id ) {
    $admin_email = get_option( 'admin_email' );
    $subject = 'New Topic Created in bbPress Forum';
    $message = 'A new topic has been created. Check it out in your bbPress forums.';
    wp_mail( $admin_email, $subject, $message );
}
add_action( 'bbp_new_topic', 'custom_admin_notifications' );
?>

This code sends an email notification to the admin whenever a new topic is created in the forum. You can modify the subject and message content to suit your needs.

I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top