Overiding functions.php with child-theme
You can only override functions in a Parent Theme if the Parent Theme makes functions pluggable (by wrapping them in an if ( ! function_exists( ‘function_name’ ) ) conditional), or if the output of a function is passed through a filter (e.g. return apply_filters( $filter_name, $function_output ); Pluggable functions: in the Child Theme’s functions.php file, … Read more