If you are looking for guidance on how how to format your code, you could do worse than to base it this coding standards styleguide.
via WordPress Coding Standards
If you are looking for guidance on how how to format your code, you could do worse than to base it this coding standards styleguide.
via WordPress Coding Standards
I wish all WordPress Plugins had their settings in ONE menu, and all entries in this Plugin Settings menu MUST be named identically to the plugin.
Not “broken links” plugin with settings -> permalinks -> “link checker” because I will never find it.
Time for a wordpress plugin settings corrector plugin
Sends an E-Mail to one or multiple E-Mail Addresses if new versions of plugins are available. My patch got accepted which adds an option for a single notification per plugin change instead one per 12 hours.
via WordPress › Mail On Update « WordPress Plugins
We’re using a customized version of WordPress as an electronic portfolio for students and we are using WP List Files to make documents available on the eportfolio. Unfortunately the WordPress support forums seem to delete my topic (possibly because it’s an older version) and the author is no longer supporting the plugin.
Due to time constraints, these plugins are no longer supported and will not be updated, ever! Unless you know what you’re doing, I strongly discourage using these on a production blog since they have not been tested since WordPress 2.5.
The plugin didn’t work in version 2.0.3 that we are using because the wp_enqueue_script function does not exist in this version (the codex page does not say when this function was added). Anyway after manually adding the javascript to the theme’s head element the plugin almost worked fine – links didn’t take our folder structure into account.
works:
joeblogs.com</dir specified in post or page>
doesn’t work:
allblogs.com/blogs/joebloggs</dir specified in post of page>
Fix it by replacing line 231 to read:
$files .= ‘<li><a href=”‘.get_bloginfo(‘wpurl’).$item['link'].’”>’.$itemName.’</a>’.
The hyperlink created for the item didn’t have the complete blog url in it it assumed the blog was installed in the root of the domain. After this fix the plugin works fine.
Made few tweaks to improve the blog in preperation for several drafts I’m currently working on. Here’s a quick rundown for everyone that’s interested in the wordpress blog platform.
There’s more but I’ll save them for another time.