WordPress has a few default classes used for things like image alignment, galleries and other html output by core features. This is a combination of the styles found in the default WordPress TwentyEleven theme, and some modifications of my own. Include this snippet with your css to save a bunch of time building your responsive Full Article…
Search the Wiki
Responsive WordPress Menus
Taken from Studio Nashvegas: http://www.studionashvegas.com/responsive-design-2/a-responsive-menu-solution-for-wordpress/ Here is a working example of the responsive select menu: http://www.outandaboutmarketing.com/ A few months ago I modified a really cool WordPress template and started using it for my own clients. As part of the overhaul, I realized that there was no really good way (included) to turn a WordPress unordered list into Full Article…
Facebook for Freelancers: Groups, Pages or Profiles?
Once you’ve decided Facebook is right for you as a freelancer, you’re ready to put together an action plan on how you’ll use it to promote your business and market your services. Your next step is to decide whether to promote your business with a Profile, a Group or a Page. These are the three set-ups Full Article…
Google Analytics Tip – How to Delete Profiles and Web Properties
We recently had a client that wanted to do some cleanup on their Google Analytics account and get rid of several web properties that either had never been used or were no longer needed. Google provides some pretty clear guidance on how to create or edit a web property and add or remove profiles within that property, but nothing on how to delete Full Article…
WordPress get_categories queries
Get only the top level categories. There is no depth parameter on the get_categories function, this query and foreach loop will ensure only toplevel categories are displayed: This query will get just the child categories of a given parent: In conjunction with the ‘Custom Taxonomy Order‘ plugin and an orderby parameter of ‘term_order’, the two queries Full Article…
Change Your Database Prefix to Improve Security
Taken from Dig WP: http://digwp.com/2010/10/change-database-prefix/ One of the awesome things about WordPress is that it’s a dynamicpublishing system that uses a database to store your site’s information: posts, options, plugin and theme settings – all of this data is stored in your site’s database. It’s like the brain of your WordPress installation. Unfortunately the WordPress database is also a prime target Full Article…
Renaming WordPress Custom Post Types and Taxonomies
Taken from this Stack Exchange Thread: http://wordpress.stackexchange.com/questions/1037/renaming-custom-post-types-and-taxonomies SQL query for renaming the posts: SQL query for renaming taxonomy: That should take care of all of the database areas. Just remember to match the new names in the code where the post types or taxonomies are registered. As far as I know, this is not handled in Full Article…
Google Apps Standard for Free
I strongly suggest every web developer should own a domain, that helps you to understand the real time web system. The web giant Google offering a free tool called Google Apps Standard Edition you will get Gmail, GTalk, GCal, and Gdocs. This post explains how to setup the free Google Apps Standard for your domain. Live Full Article…
wp_nav_menu – Make Links Open In A New Window
Taken from here: http://techstudio.co/web-design/the-best-way-to-make-links-open-in-a-new-window The old method for setting links up to open in a new window causes validation errors in xHTML. The right way is to use the following markup. But for that markup to work the following Javascript must be included in your document.