WordPress License Plates

WordPress License Plates

So a few weeks ago I picked up my new plates. WRDPRSS. I’m really excited about them :)
The general response I’ve gotten from my friends and family is “you’re such a nerd” and you now what, that’s exactly right, I certainly am a nerd :)
Here are what the plates look like:

And one of my …

Read More...

Customize the Excerpt by Word Count

Customize the Excerpt by Word Count

Here’s a nice little bit of code that can come in very handy.
If you’re looking to limit the_excerpt() or get_the_excerpt() by a specific word count, here is a great code snippet that you can throw into functions.php that will do just that.
function my_excerpt_length($text){
return 20;
}
add_filter(‘excerpt_length’, ‘my_excerpt_length’);

function new_excerpt_more($more) {
return ‘…’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);
Any questions or feedback, please leave them …

Read More...

Matt Mullenweg on WordPress [VIDEO]

Matt Mullenweg on WordPress [VIDEO]

Here’s a great interview with Matt Mullenweg and he discusses his thoughts on WordPress 3.0 and then goes into some Q&A from the WPGirls at WPNight in Sweden.

Read More...

Real-time RSS Updates via PubSubHubbub

Real-time RSS Updates via PubSubHubbub

The latest blog innovation is how RSS interacts with subscribers. This round of innovation is push instead of pull. The way RSS has worked is that the RSS client will pull the website each time, asking if there were any updates. PubSubHubbub changes that. Instead of asking, it’s now told.
This video …

Read More...

How to Exclude Pages from Search Results

How to Exclude Pages from Search Results

WordPress by default will include pages in the search results. More often than not, you will want users to only be able to see posts in the search results, not pages.
To change this default behavior, it’s actually quite easy.
Include the following lines of code in your functions.php file.
function vibeExcludePages($query) {

Read More...

WordPress & PostgreSQL

WordPress & PostgreSQL

Ever wanted to use WordPress with a PostgreSQL database? Now you can!
A user with the alias of “steinmicforma” has created a project on Sourceforge that utilizes a PostgreSQL database instead of MySQL. The WordPress Codex has limited documentation on how to do this, so someone took it upon themself to create a project …

Read More...

Growth of WordPress.com in 2009

Growth of WordPress.com in 2009

2009 was the year for WordPress.com.
It’s nothing new to hear about the tremendous popularity of WordPress.com, but the proof is in the pudding! There was a significant higher number of blogs created in 2009, more importantly was the expanding adoption rate. Who said blogs are dying?
One of the WordPress.com staff members was nice enough to …

Read More...

WordPress.com Goes Down, TechCrunch.com Goes With It

WordPress.com Goes Down, TechCrunch.com Goes With It

WordPress.com isn’t perfect, mortal just like any other network. Today, there has been a flurry of people talking about wordpress.com being down, and for a fact, it is down right now.
This has been confirmed by WordPress.com staff:
UPDATE at 2:55pm PST:
I will update this story as news progress.
UPDATE at 3:16pm PST:
There’s some visible on the …

Read More...

WordPress Plugin Development, What Not to Do

WordPress Plugin Development, What Not to Do

Mark Jaquith, a core developer for WordPress, published a non-exhaustive list of what “not to do” for plugin development.
We enjoy great plugins as much as the rest of the WP community. This guide by Mark will help ease a lot of pain for a lot of people. Here’s the list.

Give it a license …

Read More...

WordPress.com Sitemap Ping Feature Gets You Quick Search Updates

WordPress.com Sitemap Ping Feature Gets You Quick Search Updates

WordPress.com will not to be left behind in the search engine update game. As of last week, WordPress.com blogs have a great new feature to keep those engines up to date. The new functionality sends an instant ping to Google, Bing, Yahoo! and Ask to ensure they know you’ve added or removed a page or …

Read More...