4316 readersCustom taxonomies in WordPress 3.0 are being updated to allow for more control and to give us options we've been waiting nearly a year for.
3567 readersWordPress have lots of useful built-in function, unfortunely there's no function to allow the quick edition of a term (category, tag, or custom term). Nevermind, we can still built our own.Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!WordPress tip: How to make term edition
4864 readersOne of the new very interesting things in WordPress 3.0 are individual post-types you can implement with little effort. Back then, you had to expand the database and write your own interface for it, now you just have to add a few lines of code - of course this is just the current state, which
2573 readersBrad asks: What’s the optimal way to store large amounts of meta data for a taxonomy without creating a custom table in WordPress? WordPress has meta tables for the site (options table), posts, comments and users. It lacks a table for meta data about taxonomies (categories, tags, custom taxonomies). Solutions for this aren’t going to
2986 readersWordPress 3.0, scheduled to launch May 1st, 2010, will be a real revolution for the blogging system. With new functionalities such as custom post types, developers will be able to create more complex and more powerful sites based on WordPress. In this article, I have compiled the most useful resources to get you started with
8441 readersThe WordPress community is buzzing with excitement over the soon-to-be-released WordPress 3.0. Currently in Beta 2 now, WordPress 3.0 will have a lot of exciting new features , such as a new default theme and better menu management. Quite possibly the most exciting of these features is custom post types. In this tutorial, we’ll talk
-
230 readersIf you’re at all familiar with taxonomies in WordPress, you already know how awesome it is to add custom taxonomies to your posts or custom post types. WordPress developers have known this for a while.
What many people don’t know is that the current taxonomy schema was added way back in WordPress 2.3. Yes,
734 readersWordPress is primarily a blog platform. Not infrequently it is used as a CMS. But not just static pages play a role, but also posts, because they are giving more opportunities, having better performance and be published in feeds. Therefore, I prefer to use, in the context of WP as a CMS, posts more than
3870 readersWhen coding a WordPress site, you often need to get a category ID. If you ever wanted to be able to get a category ID from the category name, then just read this recipe, I'm pretty sure you will like it.Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can
8810 readers
( example screenshot )PHP
add_action( 'admin_head-edit-tags.php', 'admin_edit_post_tags' );
function admin_edit_post_tags() {
add_filter( 'get_terms', 'admin_trim_tag_description', 10, 2 );
}
function admin_trim_tag_description( $terms, $taxonomies ) {
if( 'post_tag' != $taxonomies[0] )
return $terms;
foreach( $terms as $key=>$term )