1
0

Put symlink to tabs.php in wordpress theme

This allows us to copy the theme folder over to a wordpress installation
in its entirety without having to change the PHP include directive to
include a full absolute path to the tabs.php file with the rest of the
webpage.
This commit is contained in:
Aaron Lindsay 2014-01-20 20:02:26 -05:00
parent 9fcedb0622
commit b80db8db05
2 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@
<div id="header"> <div id="header">
<div id="header-inner"> <div id="header-inner">
<div id="title"><a href="http://aclindsay.com">aclindsay<span id="title-inner">.com</span></a></div> <div id="title"><a href="http://aclindsay.com">aclindsay<span id="title-inner">.com</span></a></div>
<?php include("/usr/share/webapps/aclindsay.com/tabs.php"); ?> <?php include("tabs.php"); ?>
</div> </div>
</div> </div>

View File

@ -0,0 +1 @@
../tabs.php