Custom Functions File
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
<!-- Create a folder within your child theme named “lib” -->
<!-- Within the new “lib” folder, create a file named “my_functions.php” -->
<?php
/**
* My Custom Functions
*/
// Save.
// Paste this code in your themes current functions.php file
// Add My Custom Functions File
include_once( get_stylesheet_directory() . '/lib/my_functions.php' );
// Save.