WordPress Plugin Diversion
Earlier this year I started doing some daily walking and hiking. I would be remiss if I didn’t tie some technology into it somehow, so in my spare time I’ve been working on a WordPress plugin to track my progress.
The plugin is now showing up in the WordPress Plugin Directory for anyone who’s interested.
4 thoughts on “WordPress Plugin Diversion”
Okay, I give up. How do you enter anything into the log?
You have to be logged in with administrator permissions to edit the log. Once you have the log showing up in a page and you’re logged in you’ll see an “edit log” button. Press that, then the “new log entry” button that appears. All of the editing happens on the WordPress page where the log appears, not in the Admin area.
I had the same question as Ed… I actually sent the question to your other website. I’ve got it working now. I was logged in as another user. Is there anyway to set it up to be edited by another user? Thanks!
As it stands now, any user with the manage_options capability can edit the log. Generally this would only be someone with the administrator role. If you want to change this, open the .PHP code in the plugin and find this function…
function VerifyWritePermissions()
{
if (!current_user_can(‘manage_options’))
die(‘Request Failed’);
}
Change manage_options to something less restrictive. Here is a decent description of how current_user_can works: http://iface.wordpress.com/2006/03/06/current_user/
I haven’t tested it, but it looks like edit_posts might be a good one to use here.
Comments are closed.