Fix for Issue #769
missing hooks.php in functions.php. causes footer.php to call an undefined function
This commit is contained in:
parent
56bc68c30b
commit
3723546d81
|
@ -35,6 +35,11 @@ require get_template_directory() . '/inc/template-tags.php';
|
||||||
*/
|
*/
|
||||||
require get_template_directory() . '/inc/pagination.php';
|
require get_template_directory() . '/inc/pagination.php';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom hooks.
|
||||||
|
*/
|
||||||
|
require get_template_directory() . '/inc/hooks.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Custom functions that act independently of the theme templates.
|
* Custom functions that act independently of the theme templates.
|
||||||
*/
|
*/
|
||||||
|
|
Reference in New Issue