Custom Field Images: Version 2.1
This version adds the option to use the first attached image to a post as the displayed image.
This version adds the option to use the first attached image to a post as the displayed image.
A while ago I made a Yahoo pipe that helped you see what people were saying on the support forums about your plugins. I, for one, am still using it today.
For some time, there has been a debate among WordPress developers about adding additional meta tables, like wp_postmeta and wp_usermeta.
The only thing that everyone seems to agree on is that a unified API for accesing meta tables is necessary.
Ever since WordPress introduced quicktags, people have been wanting to customize them. Naturally, a lot of tutorials popped up, demonstrating how to do this. The problem is that all of them require that you edit quicktags.js, a file in WordPress.
I read an interesting post today about WordPress plugin users being ungrateful.
To be honest, I don’t know what Jeff (the author of that post) is talking about. All the people that leave comments here have a grateful attitude, or are at least polite.
This version adds two query operators: OR and AND.
I was using the autogrow script for my Front-End Editor plugin and thought it would be also useful for the comment textarea. So I wrote this small plugin.
Here is a foolproof way to make only parts of your site editable: function front_editor_disable() { if ( ! is_single() ) return true; } add_filter(’front_end_editor_disable’, ‘front_editor_disable’); Just add that code in your theme’s functions.php file and you’re good to go: the plugin will work only on single posts. Feel free to replace is_single() with whatever [...]
While reading an article about Event Pooling with jQuery, I realised that WP has an equivalent system, where events are called ‘hooks’.
bbPress 1.0 has finally been released last week. But why do I use it? Why would anyone use it? Here are my 7 reasons. It’s familiar If you have any experience with WordPress 2.7 or older, you will feel right at home using the new bbPress admin. You imediatly get a sense that you already [...]