Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cobaltapps/2dc500dbe1d4da74898e53a4d2171b81 to your computer and use it in GitHub Desktop.
Save cobaltapps/2dc500dbe1d4da74898e53a4d2171b81 to your computer and use it in GitHub Desktop.
Child Themer: Conditionally include both a front-end and back-end custom functions file for better custom coding compartmentalization.
// Include the front-end.php file only to non-admin pages.
if ( ! is_admin() )
include_once( get_stylesheet_directory() . '/custom/front-end.php' );
// Include the front-end.php file only to admin pages.
if ( is_admin() )
include_once( get_stylesheet_directory() . '/custom/back-end.php' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment