vote up 1 vote down star

I have two Wordpress blogs running on the same server, so they both have access to the same file system. Both blogs use the same template, and this template is duplicated within each theme directory. Every time that I update the theme I need to copy over the new files to both theme directories.

Is it possible to have both of these blog share a common theme directory so that I only need to modify one template folder?

flag

3 Answers

vote up 2 vote down check

Absolutely. Just make sure that they have read and write access to that shared folder.

Then set up a symlink from each of the theme folders. You do this with ln -s

If you can't use symbolic links, you can then set up a rewrite-rule, which redirects all requests from /wp-content/themes to like /var/www/shared/themes.

If you want, I can provide an example.

link|flag
Thanks! Luckily for once I am not on a windows server. Nevertheless, would there be a way to share a template directory on a Windows server? – webdevbytes Jun 15 at 16:45
vote up 0 vote down

Another approach, if using source control (SVN, Git), would be to checkout the theme into the two locations and update them.

link|flag
vote up 2 vote down

You can have a symlink link one theme folder to another.

delete one of the theme folders and use ln like cp

ln -s <source> <dest>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.