Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
wordpress and vanilla
strawberries
New
Well, I finally got the blogging/wordpress bug on Sunday past.....enough to buy a music related domain name that I had always hankered after.
I spent the last two days trying to create a nice logo in Photoshop, as well as finding a nice theme and learning about plugins.
Tomorrow, all being well, i will start my attempts at integrating vanilla. Wish me luck!
http://www.multitrackers.com
0
This discussion has been closed.
Comments
Yah!
it does work. wordpress works with different functions, like get_header() or get_sidebar() (more info about those you can find here). if, for example, you put
<?php get_sidebar() ?>
anywhere in a template then this function calls sidebar.php from your template files and adds it to the document.i've found the wordpress forum not really helpful, but the documentation is easy to understand and there's loads of it.
<?php here's all the vanila related stuff before all that wordpress stuff // Map existing wordpress columns to Vanilla $DatabaseColumns['User']['UserID'] = 'ID'; $DatabaseColumns['User']['Name'] = 'user_login'; $DatabaseColumns['User']['Password'] = 'user_pass'; $DatabaseColumns['User']['Email'] = 'user_email'; $DatabaseColumns['User']['DateFirstVisit'] = 'user_registered'; // Also map the Wordpress columns into Vanilla $DatabaseColumns['User']['user_nicename'] = 'user_nicename'; $DatabaseColumns['User']['user_url'] = 'user_url'; $DatabaseColumns['User']['user_activation_key'] = 'user_activation_key'; $DatabaseColumns['User']['user_status'] = 'user_status'; $DatabaseColumns['User']['display_name'] = 'display_name'; ?> <?php require_once('/your/path/to/wp-blog-header.php'); ?>
this should do the trick.
good luck