Author Archive

Always have “Read More” on Manual and Automatic excerpts

Tuesday, March 22nd, 2011

Previously, we have talked about modifying your post excerpts. This is great if you always use the automatic excerpts that WordPress provides.  However, if your customer every puts in a manual excerpt, this functionality won't give you the "read more" that you are expecting. What a pain, right!? Well, I have ...

Modifying your post excerpts

Tuesday, March 15th, 2011

This is my personal favorite way of modifying excerpts, I found all this information on the WordPress codex excerpts page. I think that the WordPress excerpt is a little bit short so the code below will extend it to 120 words. Also, by default WordPress only shows the [...] at the ...

Twitter Tools doesn’t work anymore

Monday, February 7th, 2011

At least, that's what we thought.  We tried everything, including re-entering all our credentials again. Nothing seemed to work. Then we tried something really strange. We re-applied for a Twitter application, just created a new one.  This gave us all new Oauth Consumer Keys and Access tokens. After putting them into Twitter ...

We have an E-Book!

Wednesday, December 29th, 2010

We recently completed version 1 of our "How to Set up A Website without breaking the bank" ebook! It gives you everything you need to: Get a domain Change the DNS Get Hosting (at a discount) Setup hosting Setup and Configure WordPress Including the cost of the book, you can get your domain and hosting and set ...

Updating themes puts my site into maintenance mode, and I can’t get out!

Tuesday, November 9th, 2010

We just recently put a new website together using our host's one-click install method. Instantly, the site needed something like 30 updates, most of which were to theme files. So, I just clicked "update all".  Then, all of a sudden, my whole site was in maintenance mode and I couldn't do ...

My WordPress site was hacked and I have spam links in my footer!

Thursday, November 4th, 2010

If you are finding that you have links in your page source to things like sexual enhancement drugs or other fun internet spam things.. you may want to check out these guys: http://codex.wordpress.org/FAQ_My_site_was_hacked http://deanhunt.com/has-your-wordpress-blog-been-hacked/ And google: WordPress Hacked If these do not solve your problems, you may want to search your Wp-Options table for ...

Guidelines for cutting a WordPress theme from PSD

Friday, October 8th, 2010

Even if you are cutting a theme for a single site and it will never be moved away, you should follow some simple guidelines to ensure quality in your theme. This will make sure that even if your customer does something crazy and unexpected, that your ...

Add JS form validation to your WordPress plugin

Tuesday, September 28th, 2010

I was working on a plugin that someone else created and there was a requirement for validating that a specific name field was filled in before submitting the form.  Since WordPress has jquery.form.js included in the source, I figured I could use that. Turns out it is pretty easy! First thing, ...

Get the total post count across all your WPMU blogs

Saturday, August 28th, 2010

Just drop this code into a script in your blog's root directory:

How to remove User profile fields

Tuesday, August 24th, 2010

Similar to this post, you can add a new function that is called by the "user_contactmethods" filter. Then, unset the values for the contact methods you no longer would like. For AIM, you would do the following in your functions.php file: function bwa_remove_some_contactmethods( $contactmethods ) { unset($contactmethods['aim']); return $contactmethods; } add_filter('user_contactmethods','bwa_remove_some_contactmethods',10,1); You can modify the other items ...

WordPress Widgets: How to Use them, what they do

Tuesday, July 27th, 2010

Widgets were a HUGE deal when WordPress added them in as a feature, before adding them in to the core system widgets functionality was added through a plugin.  This was clumsy but it worked well at the time. Since being added to WordPress core widgets have allowed site owners to manage ...

How to use AboutUs.org

Friday, July 23rd, 2010

Since our post on your about us page, we have had some questions about how to submit your site to aboutus.org. First, go to http://aboutus.org and put your website's URL (your domain name) into the search field. Once your site is entered, you will be taken to your site's page. The URL ...