Example
Putting the following code in your template:
<?php if (function_exists ('wp_ftr_googlestats')) wp_ftr_googlestats('l, F j, Y'); ?>
you'll get something like Googlebot visited this page Friday, September 24, 2004
If you want more control, you can use the wp_ftr_get_googlestats() function. It takes no parameters and returns null if Googlebot never visited the page, or an associative array $results[] with three elements:
* $results['lastvisit'] the time of the last Googlebot visit expressed as UNIX timestamp (the number of seconds that have elapsed since 1st January 1970).
* $results['visits'] Number of visits since first plugin activation or last data reset.
* $results['frequency'] Average frequency of Googlebot visits (in seconds).