gboissiere33
Member
Posted 4 months ago #
How do you integrate WordPress multisite 3.x with a website?
Basically I'm looking for some instructions similar to this page:
http://codex.wordpress.org/Integrating_WordPress_with_Your_Website
but for WordPress set up as a multisite.
We are not looking for anything too complicated, we just want to be able to use some internal functions like get_permalink() so hackish suggestions are welcome too!
Thanks,
Guillaume
Basically I'm looking for some instructions similar to this page:
http://codex.wordpress.org/Integrating_WordPress_with_Your_Website
but for WordPress set up as a multisite.
You do what's on that page.
Then you set up multisite, which is a feature *inside* WordPRess. Gotta set up WP first. ;)
gboissiere33
Member
Posted 4 months ago #
My WordPress is already set up as multisite and that's working fine. I then followed the instructions on that page but it's not working.
<?php
define('WP_USE_THEMES', false);
define('DB_HOST', 'localhost');
require('../blog/wp-blog-header.php');
$permalink = get_permalink(18);
?>
--> I get an error that says: Registration has been disabled.
Am I missing a step?