I'm going back through my older WordPress theme and making the functions filterable and also adding the function_exists checks. Is there anything I'm not thinking about that this may cause problems with existing code?
// Dummy function
if ( ! function_exists( 'custom_func' )) {
function custom_func() {
$output = "Something Awesome";
return apply_filters('custom_func', $output);
}
}
Thanks!