i was just wondering if it's indicated anywhere that you don't really have to use themes for v1.5
coz i think it will be handy to some people
just use wp.php instead
so either rename wp.php to index.php or
replace everything in index.php
with
<?php
include("wp.php");
?>
maybe there can be an option in CP to turn themes off?!
Joshua Sigar
Member
Posted 8 years ago #
In the root directory of wordpress installation, you'll find the following in index.php
<?php
/* Short and sweet */
// replace true with false to disable theme feature
define( "WP_USE_THEMES", true );
require("./wp-blog-header.php");
?>
if you do that, you will get a blank page
help-me-please
Member
Posted 8 years ago #
I guess you would have to add the rest of the template code after the header, but not everyone will realise that.
I would like to try themes but unfortunately they all refuse to display any posts! wp.php works fine so it is obviously a theme thing rather than anything to do with the database. So I'm just going to have to revert to the 1.2.2 system of having the template in the root, it's kind of disappointing but no big deal.