4166 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
3850 readersWordPress 3 fills in a number of important gaps towards being a serious content management system. The easy-to-use custom taxonomies function gives site designers some powerful tools for building a good information architecture. Learn what taxonomies are, why they’re useful, and how to use them in today’s tutorial! What is a Taxonomy? Taxonomies are different
5095 readersThe ultimate guide for understanding, creating, and using custom post types with WordPress.
5324 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
624 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
2867 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
-
72 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,
3424 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
8433 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 )
1104 readers
( example screenshot )PHP
add_action( 'admin_head-edit-tags.php', 'admin_edit_tags' );
function admin_edit_tags() {
add_filter( 'get_terms', 'admin_trim_category_description', 10, 2 );
}
function admin_trim_category_description( $terms, $taxonomies ) {
if( 'category' != $taxonomies[0] )
return $terms;
foreach( $terms as $key=>$term )