• Hi all !!
    I’ve a cms that i want to include the header, footer and sidebar of my wordpress… for example vbulletin.

    Do you have a suggest to do this ?
    because if i “include” the index of vbulletin in my wordpress, when i click on a forum or topic, i lost the header, sidebar, and footer of wordpress…

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter anibalardid

    (@jackalpret)

    i found that … i test in wp and works … now i go to test in wpmu

    <?php
        // turn off WordPress themes and include the WordPress core:
        // define('WP_USE_THEMES', false);
        require($_SERVER['DOCUMENT_ROOT'] . '/wordpress/wp-blog-header.php');
    
    get_header();
    
    ?>
    
    <div id="contenido">
    	<table border="0" cellpadding="4" cellspacing="0" class="ppal" width="372">
    		<tr>
    			<td valign="top">
    			AAAA
    			</td>
    		</tr>
    		<tr>
    			<td valign="top">
    			BBBB
    			</td>
    		</tr>
    	</table>
    </div
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    Would you mind giving a little more information? I’m trying to integrate vbulletin into a wordpress blog and having problems

    I have the following code in my vbulletin header template

    <?php
        // turn off WordPress themes and include the WordPress core:
        // define('WP_USE_THEMES', false);
        require("/home/scaphism/public_html/wordpress/wp-blog-header.php");
    
    get_header();
    
    ?>

    and my header is not being included.

    i have also tried the reverse by attempting to include my vbulletin index in a WP page template but that does not work either.

    I also have a get_sidebar & get_footer in the vbulletin footer template.

    Any thoughts?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘include header, footer, sidebar in other CMS ?’ is closed to new replies.