Skip to content

Instantly share code, notes, and snippets.

@mattmcgiv
Last active July 9, 2018 02:28
Show Gist options
  • Select an option

  • Save mattmcgiv/7c1435c490b5ef460711 to your computer and use it in GitHub Desktop.

Select an option

Save mattmcgiv/7c1435c490b5ef460711 to your computer and use it in GitHub Desktop.
wp easy file path
<?php
/*
* Returns a WP file path
* Parameter: path to file relative to current file
*/
function mm_get_file_path($relative_path_no_preceding_slash) {
return plugin_dir_path(__FILE__) . $relative_path_no_preceding_slash;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment