I can see that it’s common to augment wordpress content/functionality using the child themes functions.php with the use of hooks.
I can also achieve modifying content/functionality by copying the parent theme’s template to my child theme and making adjustments there.
What’s recommended and why? Is there a certain point in which one method is better than the other?
]]>The reasoning for this is that template files change over time, and if you’ve copied it to a child theme, you could easily miss updates to that file when they happen.
]]>