I have several subdomains with individual installs of wordpress. I'd like to be able too share certain theme files (i.e. sidebar.php) across all installs. My first effort to do it was by using the following code
<?php include ('/wp-content/themes/blog/sidebar.php'); ?>
however this results in an error with wordpress looking for sidebar.php in the current theme file, rather than the direct path called for above.
Any ideas?