http://en.wikipedia.org/wiki/HipHop_for_PHP HipHop programmatically transforms PHP source code into C++ and then uses g++ to compile it to machine code. HipHop for PHP can substantially increase the speed of PHP applications. Improvements of web page generation throughput by factors of 2 to 6 have been observed.
http://wordpress.org/extend/plugins/wordpless/ This plugin compiles .less files in the active theme folder (using less PHP compiler). Now caching feature is fixed. .
Clone your Heroku App GIT repo to a local server directory: $ git clone git@heroku.com:yourapp-name-xxxx.git Enable CURL extension in php.ini: #Win env: extension=php_curl.dll Clone Facebook PHP SDK into sdk/ folder. It’s included as a submodule, so do only: git submodule init git submodule update Alter AppInfo.php to return your App ID and App Secret: /** * [...]
You can remove or change the <ul> container that you get by default with wp_nav_menu (codex) through parameters, but you can’t remove the <li> elements that wrap each menu item. This is how you can actually remove them: $menuParameters = array( ‘container’ => false, ‘echo’ => false, ‘items_wrap’ => ‘%3$s’, ‘depth’ => 0 ); echo strip_tags(wp_nav_menu( $menuParameters ), [...]