Let registered users add posts

For registration you can use something like this:https://wordpress.org/extend/plugins/front-end-users/screenshots/ or you can do a search here or on any search engine and I’m sure you’ll find more than enough plugins. As for the moderation, I have new posts added as drafts and then publish them myself after checking them. Not sure what you want to do … Read more

bbpress plug-ins and buddypress [closed]

Yes, it is possible. However, your buddypress theme must be compatible with bbpress or else /forums won’t be setup correctly. Reference: http://devpress.com/blog/how-to-make-a-site-like-devpress/ bbPress for Forums or Message Board Although BuddyPress has group forums, I don’t have it enabled on DevPress. It’s because I prefer having a central forum for interaction and support instead of having … Read more

Sending comment notifications to different recipients depending on taxonomy terms

Finally I found the right code, if it can be usefull to someone: function sp_comment_moderation_recipients( $emails, $comment_id ) { $comment = get_comment( $comment_id ); $post = get_post( $comment->comment_post_ID ); if ( has_term(‘myterm’,’mytaxonomy’, $post->ID) ) { return array( ‘[email protected]’ ); } return $emails; } add_filter( ‘comment_moderation_recipients’, ‘sp_comment_moderation_recipients’, 10, 2 ); add_filter( ‘comment_notification_recipients’, ‘sp_comment_moderation_recipients’, 10, 2 );