/*
Theme Name: FlySocial
Description: A Theme for Beautiful Websites
Version: 1.0
Author: FlySocial
Author URI: http://www.flysocial.com.au
Template: enfold
*/



/*Add your own styles here:*/


function remove_title_attr(){
?>
 <script>
jQuery(window).load(function(){
jQuery('#wrap_all a').removeAttr('title');
jQuery('#wrap_all img').removeAttr('title');
});
 </script>
<?php
}
add_action('wp_footer', 'remove_title_attr');


add_filter("avf_youtube_video_data", function($data) {
	unset($data["playlist"]);
	return $data;
}, 10, 1);