how to edit functions.php in a child theme

I am using wordpress for my site. I am using a theme called esplanade. I have made a child theme folder and created a style.css with the required lines in it. My child theme is working nicely.

I have functions.php in my original theme. I want to edit a function in it which creates an author box below the article.

Read More

I heard that we can create a new function in the child theme functions.php but cannot edit the existing function.

I dont want to edit in the main theme folders funcions.php file. because tomorrow if i update then it will create a problem.

Related posts

1 comment

  1. Nearly all functions in esplanade can be overwritten in a child theme. Take the esplanade_admin_header_style() function for instance. Just before that function is the following line of code if ( ! function_exists( 'esplanade_admin_header_style' ) ) :
    . The important part here is if ( ! function_exists()): This means that the function it calls can be overwritten in a child theme. It is always a good practice for parent theme authors to include this function if they want to make their theme child theme friendly.

    What this all means now is that you can copy the whole function esplanade_admin_header_style() { code in here } function to your child theme and edit the code as you need and that function will then be used instead of the parent theme’s function. It is important here to keep the same name for that function. So your function will look like this function esplanade_admin_header_style() { my new code in here }. Just one more thing to keep in mind, don’t copy the if ( ! function_exists( 'esplanade_admin_header_style' ) ) :
    part to your theme.

Comments are closed.