Last active
July 9, 2018 02:28
-
-
Save mattmcgiv/7c1435c490b5ef460711 to your computer and use it in GitHub Desktop.
wp easy file path
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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