Is there any way I can use this layout ( http://www.purity-rose.net/log/ ) with WordPress? Or am I going to have to create a whole new layout? >.>
Is there any way I can use this layout ( http://www.purity-rose.net/log/ ) with WordPress? Or am I going to have to create a whole new layout? >.>
You can use that one.
If the only function of WP you want is the one that does the 'diary' bit, then you need to do 2 things:
- at the top of your index.php (and it must be index.php') you must have the lines that are at the top of the default index.php. That's these :
<?php
/* Don't remove this line. */
require('./wp-blog-header.php');
?>
The path to wp-blog-header.php must be correct.
- you use The Loop
http://codex.wordpress.org/The_Loop (1.3)
http://wiki.wordpress.org/TheLoop (1.2 / 1.2.1)
that will handle the 'story' side of things.
You'll probably need to hit the CSS too.
That okay ? If not, post and we can clarify :)
Thanks so much! :)
This topic has been closed to new replies.