Wordpress - WordPress Hooks System
Identify the error in the following code snippet:
function custom_filter($content) { return $content . ' Extra'; }
add_filter('the_content', 'custom_filter');
remove_filter('the_content', 'custom_filter', 20);