I have a function on parent theme called function ce_seller_bar( $seller )
I want to overwrite it in child theme without deleting it from parent
When I delete it in parent theme it works, when I don't delete it the browser output is:
Fatal error: Cannot redeclare ce_seller_bar()
(previously declared in
C:\wamp\www\CampusAdsList2\wp-content\themes\classifiedengine-child \includes\template.php:12)
That means that child function had been loaded before parent one so I want to write the function in child theme so after update I dont lose it
ty