From bf4b5f9559ca1965f89ce439bcb2f04e4d2349b3 Mon Sep 17 00:00:00 2001 From: kjodle Date: Mon, 29 May 2017 16:49:54 -0400 Subject: [PATCH] Added wp_head() and wp_footer() functions --- functions.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/functions.php b/functions.php index fbf97cd..ac4aeaf 100644 --- a/functions.php +++ b/functions.php @@ -3,6 +3,7 @@ if ( !defined( 'ABSPATH' ) ) exit; + /* Add a Google Webfont by uncommenting the following functions and changing the 'family' attribute below. */ /* function af_childtheme_add_google_fonts() { @@ -11,6 +12,8 @@ function af_childtheme_add_google_fonts() { add_action( 'wp_enqueue_scripts', 'af_childtheme_add_google_fonts' ); */ + + /* Let's load our child theme. */ function atticus_finch_enqueue_styles() { @@ -32,4 +35,24 @@ function atticus_finch_enqueue_styles() { add_action( 'wp_enqueue_scripts', 'atticus_finch_enqueue_styles' ); + + +/* Add HTML or scripts to the element by uncommenting the function below */ +/* +function atticus_finch_header() { ?> + This is in the head. + tag by uncommenting the function below */ +/* +function atticus_finch_footer() { ?> + This is just before the tag. +