Report and Edit Post Link

Just to give you an idea, you can do multiple things: Use a form builder plugin like Gravity with some customization: You can create a link for every post with the id of the post in the parameters of URL. The link must be the link of the page that you created your gravity form … Read more

Visitors Contacting Authors

Ive done this before using both contact form 7 and Grunion Contact Form plugins, when using contact form 7 i created a new tag to send the email to the post author: //contact form 7 author email wpcf7_add_shortcode(‘author_email’, ‘wpcf7_expert_email_shortcode_handler’, true); function wpcf7_expert_email_shortcode_handler($tag) { if (!is_array($tag)) return ”; $name = $tag[‘name’]; if (empty($name)) return ”; global … Read more