HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/_domains/pennhillscdc.org/wp-content/themes/phcdc/inc/enqueue.php
<?php
/**
 * Understrap enqueue scripts
 *
 * @package understrap
 */

// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;

if ( ! function_exists( 'understrap_scripts' ) ) {
	/**
	 * Load theme's JavaScript and CSS sources.
	 */
	function understrap_scripts() {
		// Get the theme data.
		$the_theme     = wp_get_theme();
		$theme_version = $the_theme->get( 'Version' );

        $css_version = $theme_version . '.' . filemtime( get_template_directory() . '/css/theme.css' );
		wp_enqueue_style( 'understrap-styles', get_template_directory_uri() . '/css/theme.css', array(), 1 );
		wp_enqueue_style( 'adobe-fonts', 'https://use.typekit.net/lle7fmb.css', array(), 1 );
		wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/fontawesome/all.min.css', array(), 1 );
		wp_enqueue_style( 'gijgo', get_template_directory_uri() . '/css/assets/gijgo.min.css', array(), 1 );

        $js_version = $theme_version . '.' . filemtime( get_template_directory() . '/js/theme.min.js' );
        wp_enqueue_script( 'jquery314', get_template_directory_uri() . '/js/jquery.3.4.1.js', array(), 1, false );
        wp_enqueue_script( 'gijgo', get_template_directory_uri() . '/js/gijgo.min.js', array(), 1, false );
		wp_enqueue_script( 'understrap-scripts', get_template_directory_uri() . '/js/theme.min.js', array(), $js_version, true );
        wp_enqueue_script( 'phlibrary', get_template_directory_uri() . '/js/phlibrary.js', array(), $js_version, true );
		if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
			wp_enqueue_script( 'comment-reply' );
		}
	}
} // endif function_exists( 'understrap_scripts' ).

add_action( 'wp_enqueue_scripts', 'understrap_scripts' );