Bundled Themes: Link to an updated documentation on child themes on developer.wordpress.org, instead of Codex.

Props man4toman, andraganescu.
Fixes #46450.
Built from https://develop.svn.wordpress.org/trunk@45081


git-svn-id: http://core.svn.wordpress.org/trunk@44890 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-04-01 11:56:52 +00:00
parent c1c1abd211
commit b718c32bed
1 changed files with 7 additions and 5 deletions

View File

@ -6,11 +6,13 @@
* in the theme as custom template tags. Others are attached to action and * in the theme as custom template tags. Others are attached to action and
* filter hooks in WordPress to change core functionality. * filter hooks in WordPress to change core functionality.
* *
* When using a child theme (see https://codex.wordpress.org/Theme_Development and * When using a child theme you can override certain functions (those wrapped
* https://codex.wordpress.org/Child_Themes), you can override certain functions * in a function_exists() call) by defining them first in your child theme's
* (those wrapped in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before
* functions.php file. The child theme's functions.php file is included before the parent * the parent theme's file, so the child theme functions would be used.
* theme's file, so the child theme functions would be used. *
* @link https://codex.wordpress.org/Theme_Development
* @link https://developer.wordpress.org/themes/advanced-topics/child-themes/
* *
* Functions that are not pluggable (not wrapped in function_exists()) are instead attached * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
* to a filter or action hook. * to a filter or action hook.