Including Wordpress Footer in WHMCS

1.3k Views Asked by At

I'm trying to include the Wordpress Footer into WHMCS.

How do you do it? Is it possible?

I have tried including the footer.php file but nothings happening.

I know that you can use bridges but it's integration in the wrong way, I want to integrate fully as opposed to pulling whmcs into wordpress.

2

There are 2 best solutions below

1
On

Adapted from this How to call a filter hook in a PHP external file

WordPress running on http://example.com/wordpress. And the following test.php file located at http://example.com/test.php:

<?php
define( 'WP_USE_THEMES', false );
require( $_SERVER['DOCUMENT_ROOT'] .'/wordpress/wp-load.php' );
?><!DOCTYPE html>
<html>
<head>
</head>
<body>
<?php 
    get_footer(); 
    // or wp_footer();
?>
</body>
</html>

See *What is the constant WP_USE_THEMES for?

0
On

I generally use the browser generated HTML code directly from the wordpress site inside the WHMCS footer, to make them both look similar. Tried with the wp-load.php, but it did not work for me either!