Typo in Better Stats Insertion 0.1
Uggh—so I made a pretty significant typo in the instructions for Better Stats Insertion 0.1. Essentially, I made it so it would not work if you followed the directions. I said to insert the following tag:
<?php if ( function_exists( 'bsi_include' ) ) { bsi_include(); } ?>
And, basically, bsi_include() is a non-existant function. It should be the following:
<?php if ( function_exists( 'bsi_insert' ) ) { bsi_insert(); } ?>
I apologize for any confusion this may have caused, but if you download the latest version (0.2 at the time of this writing), it will fix the instructions.

Leave a comment