If you want to link your CSS and js file in your WordPress theme index or header file then you can use this function.
<link rel="stylesheet" href="<?php echo get_template_directory_uri();?>/css/master.css">
<script src="<?php echo get_template_directory_uri();?>/js/jquery-2.2.4.min.js"></script>
No comments