Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save INDIAN2020/520420c2394aeb880c39f82aa2ba6eba to your computer and use it in GitHub Desktop.
Save INDIAN2020/520420c2394aeb880c39f82aa2ba6eba to your computer and use it in GitHub Desktop.
WordPress get file extension
<?php
function get_file_extension($file) {
$file_type_array = wp_check_filetype($file);
if($file_type_array)
{
return $file_type_array['ext'];
}
return '';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment