How can I return the pathname from the current file, only 2 directories up?
So if I my current file URL is returning theme/includes/functions.php
How can I return “theme/”
Currently I am using
return dirname(__FILE__)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
PHP 5.3+
PHP 5.2 and lower
With PHP7 go further up the directory tree by specifying the 2nd argument to
dirname. Versions prior to 7 will require further nesting ofdirname.http://php.net/manual/en/function.dirname.php