i’m wondering if it’s possible to add a php file in your themes folder (wp-content/themes/classic) where the css file is, then link afterwards? Because i’m currently trying to add a register.php into my blog but i still need the header and everything else.
Share
Yes. For example, if you want something like http://www.yourdomain.com/test follow this steps:
In your theme folder create a php file called page-test.php.
From your dashboard publish a page with the title Test(with no content at all).
Now, when you’ll go to http://www.yourdomain.com/test you will se your page. And in page-test.php you can use all WordPress functions such as get_header(), get_sidebar() etc.