php에서 자동으로 스타일 및 스크립트 파일 불러오기
php에서 자동으로 스타일 및 스크립트 파일 불러오기 스타일시트 파일 불러오기 function auto_enqueue_style($version='') { $basename = basename($_SERVER['REQUEST_URI'], '?' . $_SERVER['QUERY_STRING']); $split = explode('.', $basename); $filename = $split[0]; $extension = $split[count($split)-1]; $fileUrl …