Skip to content

Instantly share code, notes, and snippets.

@toluaddy
Forked from ntwb/ntwb_bbp_bp_pm.php
Created February 3, 2020 17:14
Show Gist options
  • Save toluaddy/182e79223f61136268517c64c839b9cf to your computer and use it in GitHub Desktop.
Save toluaddy/182e79223f61136268517c64c839b9cf to your computer and use it in GitHub Desktop.
bbPress - Add BuddyPress Private Message link after author reply details
<?php
/*
Plugin Name: bbPress - Add BuddyPress Private Message link after author reply details
Plugin URI: https://gist.github.com/ntwb/9887310
Description: bbPress - Add BuddyPress Private Message link after author reply details
Version: 0.1
Author: Stephen Edgar - Netweb
Author URI: http://netweb.com.au
*/
function ntwb_bbp_bp_pm() {
if(function_exists('bp_send_private_message_link') && is_user_logged_in() ) {
?>
<a href="<?php bp_send_private_message_link() ?>" title="Private Message">Private Message</a>
<?php
}
}
add_action( 'bbp_theme_after_reply_author_details', 'ntwb_bbp_bp_pm' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment