Topic: extension display order?
Assume Extension 1 is something like this
echo "<div>this is extension 1</div>";
and extension 1 is installed at hook id 1
after a while i would like to install extension 2 also at hook id 1 which is like this
echo "<div>this is extension 2</div>";
and for some reasons, i would like to have extension 2 echoed out before extension 1. How would i do this? is there any method that i can control the compile order of extensions within the same hook? thanks!