/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

<?php
/**
 *Recommended way to include parent theme styles.
 *(Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
 */  


  add_action( 'wp_enqueue_scripts', 'photo_perfect_pro_child_style', 999 );
  function photo_perfect_pro_child_style() {
	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
	wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',array('parent-style'));
	
	wp_dequeue_script( 'photo-perfect-custom' );
	
	wp_enqueue_script( 'photo-perfect-custom-child', get_stylesheet_directory_uri() . '/custom.js', array( 'jquery', 'jquery-masonry', 'photo-perfect-imageloaded', 'photo-perfect-photobox' ), '2.3.0', true );

		wp_localize_script( 'photo-perfect-custom-child', 'screenReaderText', array(
		'expand'   => '<span class="screen-reader-text">' . __( 'expand child menu', 'photo-perfect' ) . '</span>',
		'collapse' => '<span class="screen-reader-text">' . __( 'collapse child menu', 'photo-perfect' ) . '</span>',
	) );
}


/**
 *Your code goes below
 */
