在子主题上重写父主题的函数

Rewrite a function from Parent theme on Child theme

我正在使用我创建的子主题更改主题中的一些内容。
我想更改父主题中的一个函数,它不在 functions.php 中,而是在子文件夹 (theme/admin/admin.php) 中的文件中。

我该如何重写这个函数?
这是原始功能(它需要):
http://www.codeshare.io/v5aTK

考虑到父主题中的函数未包含在:

if( !function_exists('jtheme_home_sections_settings') ){ 
... 
}

无法在您的子主题中覆盖它(您将收到一个函数已定义的错误)。