Custom taxonomies is a great tool, you can create by yourself more ways to categorized posts or custom posts and in that way use wordpress as much better and advanced CMS.
suprisingley there isn’t yet a function to use if you want to check if a post is attached to a custom taxonomy (unless you check it with a single term of that given taxonomy – like in this example – http://wordpress.org/support/topic/custom-taxonomies-conditional-tags?replies=13#post-1110167)
let’s say you created a custom taxonomy called “video”, and you want to display different border to the featured image in the LOOP or any other icon near this post to show that it is a video.
you can use this function which returns the list of objects of a given taxonomy:
$video_terms = wp_get_object_terms($post->ID, ‘video’);
if(!empty($video_terms)){
if(!is_wp_error( $video_terms )){
//show your icon or any other sign of this taxonomy
}
}
Popularity: 1% [?]
hello everyone, writing these words i am using the new wordpress version, 3.3 “sonny”.
many new features are available, fancy new look for the admin, excellent new media uploader with drag and drop options, more compatibility with iPad, pointer tips to introduce new features and many more…
For Users
Experienced users will appreciate the new drag-and-drop uploader, hover menus for the navigation, the new toolbar, improved co-editing support, and the new Tumblr importer. We’ve also been thinking a ton about what the WordPress experience is like for people completely new to the software. Version 3.3 has significant improvements there with pointer tips for new features included in each update, a friendly welcome message for first-time users, and revamped help tabs throughout the interface. Finally we’ve improved the dashboard experience on the iPad and other tablets with better touch support.
For Developers
here’s a list of all the changes: http://codex.wordpress.org/Version_3.3
There is a ton of candy for developers as well. I’d recommend starting your exploration with the new editor API, new jQuery version, better ways to hook into the help screens, more performant post-slug-only permalinks, and of course the entire list of improvements on the Codex and in Trac.
Popularity: 1% [?]
Our latest plugin – wordpress social counter, the best way to add social media counters to your blog so users can share your content and see how many others have shared. place your counters wherever you like and style them from the settings page.

This plugin adds social media counters to your blog posts from many services including Twitter, Facebook and Google +1. list of services so far:
- Twitter
- Facebook
- Google +1
- LinkedIn
- StumbleUpon
SETTINGS
- Where to display – pages / posts
- How to display – horizontal / vertical
- if vertical you can control the position in your page
- What to display – Facebook | Twitter | Google +1 | StumbleUpon | LinkedIn
- Style your counters – background and border colors
you can preview it here on the blog (on your left) and see the screenshots here.
Popularity: 3% [?]
Filed Under (Installation, Plugins) by Wpfeed on 22-09-2011
Credit Card Payments WordPress

DOWNLOAD
Offline Credit Card Processing

DOWNLOAD
http://www.visser.com.au/wp-ecommerce/plugins/offline-credit-card-processing/
Popularity: 3% [?]
sometimes you wish not to display one or more of your authors in RSS feed of your blog, it can be a test user or any other reason.
here is the code to paste in your functions.php
function wp_exclude_author($query) {
if ($query->is_feed) {
$query->set('author','-1'); //Author ID
}
return $query;
}
add_filter('pre_get_posts','wp_exclude_author');
if you wish to exclude more authors just use space and another user ID with minus, like that:
$query->set('author','-1 -5'); //Author ID
Popularity: 2% [?]
Sometimes in your theme you want to display random posts or maybe random related posts in your sidebar,
here’s an easy way to do it.
in your single.php or index.php, change the main loop to:
<?php
query_posts(array('orderby' => 'rand', 'showposts' => 1));
if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink() ?>">
<?php the_title(); ?></a></h1> <?php the_content(); ?>
<?php endwhile; endif; ?>
Popularity: 2% [?]
if you are using facebook comments social plugin for your blog comments, you can use this code snippet to display comments counter.
paste it where you want to display the counter. if you’re outside of the wordpress Loop use - get_permalink( $id ); instead of the_permalink();.
<fb:comments-count href=”<?php the_permalink();?>”></fb:comments-count> Comments
Popularity: 2% [?]
From version 3.1 wordpress has an admin bar at the top of the blog displayed all the time if you are logged in. if you with to remove it from the theme and not by css tricks, paste this code into your functions.php:
remove_action('init', 'wp_admin_bar_init');
Popularity: 2% [?]
let's say you have a sponsored author you want to display in bold or
maybe change the font size or color. you can do it automatically with WordPress.
inside the function.php paste this function, just don't forget to change
the NAME_OF_AUTHOR to the name of the author you wish to take care of.
function custom_author_name( $name ) { global $post; if ($name == 'NAME_OF_AUTHOR'){
$name = '<font color=#761B4A><b>' . $name . '</b></font>'; } return $name; }
add_filter( 'the_author', 'custom_author_name' );

Popularity: 2% [?]