Removing the Authorbox from Single Posts

A few people have been asking how to do this so I thought I would write a quick post for our documentation section. The authorbox appears below the post content on all single post pages of your site. If you would like to remove this, you would first have to read these docs to understand the first steps you need to take:

Custom CSS and Custom Actions
Creating a Child Theme for PressWork

Once you understand how to create a custom action, include this to remove the authorbox:

<?php
remove_action('pw_single_bottom', 'pw_authorbox');