So many of you probably searched through the plugin list to find something that you could use to display the info of people visiting your site. That’s a good idea, but you probably didn’t realize that it came with no instructions. So after a lot of messing around I finally got it work, now you can track exactly who’s coming to your site.
The first thing your going to need to do is, download wp-infos. After that’s done, extract the plugin to your plugins directory. Once you have that done you can being working on the pieces that aren’t so obvious.
The first thing you are going to need to do, is update your sql database. Run the follow code to update your database (I use phpmyadmin).
CREATE TABLE `wp_infos` (
`id` INT( 10 ) UNSIGNED DEFAULT ‘0‘ NOT NULL AUTO_INCREMENT ,
`visits` INT( 20 ) UNSIGNED DEFAULT ‘0‘ NOT NULL ,
`daycount` INT( 15 ) UNSIGNED DEFAULT ‘0‘ NOT NULL ,
`daydate` VARCHAR( 20 ) NOT NULL ,
`ip` VARCHAR(15) NOT NULL,
`time` VARCHAR(20) NOT NULL,
PRIMARY KEY ( `id` )
) TYPE = MYISAM ;
Once that’s done your complete on the configuration of the plugin, now you need to add it to your site. I added mine to the sidebar and used the following code.
<li><h2>Blog Info</h2></h2>
<ul>
<?php wp_infos(); ?>
</ul>
</li>
And now your done, you’ll have fully functioning info on your blog.



























0 responses so far ↓
There are no comments yet...Kick things off by filling out the form below.
You must log in to post a comment.