Remove archive prefix (wordpress)

Remove prefix "Category:", "Tag:", "Author:" from archive title.

<?php
/**
 * Remove prefix "Category:", "Tag:", "Author:" from archive title.
 */
add_filter('get_the_archive_title_prefix', '__return_false');
?>

functions.php

< toolbox