Next Page Caching: A Whole New Way to Speed Up Your Site

There’s a new method of speeding up your site: “next page caching”.
This is a short entry. If you have a WordPress.org theme/plugin, here’s a single command to add all new files and remove all missing files in SVN: svn add `svn st|grep “^?”|awk ‘{print $2}’x` svn rm `svn st|grep “^\!”|awk ‘{print…
This snippet will add a button on the admin bar: add_action( ‘admin_bar_menu’, array( $this, ‘addToggleButton’ ), 99 ); public function addToggleButton( $adminBar ) { $args = array( ‘id’ => ‘my_button’, ‘title’ => ‘My Button’, ‘href’ => ‘#’, ‘meta’ => array(…