Gallery Modal PHP

  1. <?php
  2.  
  3. function appp_custom_scripts() {
  4. wp_enqueue_script( 'appp-custom-scripts', get_stylesheet_directory_uri() . '/js/app-custom.js', array('jquery'), '1.0.8', true );
  5. }
  6.  
  7. add_action( 'wp_enqueue_scripts', 'appp_custom_scripts' );
Scott Bolinger