If I decide not to use Themes, is it advisable to do the following?
-
I’m building a special page that I’d like to exclude from my Themes folder called “special.php”. It’s going to have a completely different css look than the other pages.
I’m putting this page in my root WP folder so that users can call it via “domain.com/special.php” rather than “domain.com/wp-content/themes/mytheme/special.php”
I’ve so far figured out that all I have to do is turn off the themes feature in this special page:
<?php
/* Short and sweet */
define(‘WP_USE_THEMES’, false);
require(‘wp-blog-header.php’);
?>But should I be aware of any other issues should I decide to do this?
Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘If I decide not to use Themes, is it advisable to do the following?’ is closed to new replies.