So my site's architecture is as follows:
Root folder
- index.php
- about.php
- contact.php
- etc.php
- images/
- stylesheets
- blog/ (folder where wordpress is installed)
Within my wordpress template.. I've created my custom single.php page to style whenever a user queries just a single post. However, my blog's structure is running so the navigational links go back to the main root folder to where my static pages are. So in my blog's index.php file.. my navigation is linked to ../../contact.php to go back to the root. However, when a user tries to navigate from a single post page using the single.php template.. the path doesn't work.
Is there code that I can use to link back to the root folder OUTSIDE of the blog's root folder besides just putting all my pages in the blog's root directory itself?
Sorry if the post is hard to understand.. please let me know if I can clarify it a bit.