Change date format in Accountant Theme

I wanted to change the theme’s date format… as currently only shows Date and Month. I found the the code that control what to show. but Im not sure how do I change it in the child theme. could anyone help?

Thanks in advance!

Hi,

Check this screenshot hope you will understand about your theme date changing.
How to do that = http://prntscr.com/p8zpuy
Go to your WordPress Dashboard > Setting > general = change date format which one you chose.

Thanks!

You have to write a function in your child theme which you want to override the one in the parent theme, you just give it the same name as the one in the parent theme and make sure in parent theme before the functions exist this:
if ( ! function_exists ( 'FUNCTION-NAME' ) ) {

Thanks