$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>how to edit functions.php in a child theme|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

how to edit functions.php in a child theme

matteradmin9PV0评论

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.

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.

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.

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.

Share Improve this question asked Feb 15, 2014 at 8:42 SanthoshSanthosh 1931 gold badge3 silver badges9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 3

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.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far