I'm still trying to get my bbpress installation to match www.atriskstoriesofhope.com/wordpress. What steps/php commands do I need to import my wordpress header/footer into my bbpress template/installation?
bbPress support forums » Themes
Using my wordpress header - how to inlcude?
(2 posts)-
Posted 3 months ago #
-
I think you need to include WordPress in your bbPress so you have access to WordPress functions like get_header:
http://bbpress.org/documentation/integration-with-wordpress/#func
Then, in your template, you need to do something like this:
<?php get_header(); ?>That will include the WordPress header. If you do the second part without the first, it will fail because
get_headeris a WordPress function.I think... :-)
Posted 3 months ago #
Reply
You must log in to post.