Search the blog
Connect with me
-
Recent Posts
Popular Posts
- Create a custom Twitter widget for your website
- Custom Twitter feeds for your website
- 2 ways to make a sidebar extend to the bottom of its container
- WordPress: Displaying your latest blog post on a static page
- Adding Custom Panels to Interspire Shopping Cart Templates
- How to make a sidebar extend to the entire height of its container
Daily Popular
- Adding Print buttons and different print settings to your web page
- Designing a website: Wireframes and mockups
- Skype buttons, badges and extras for your website
- 10 Successful Blogs that I Recommend You Read
- 5 Easy Rollover Effects for Image Links Using CSS
- Coding a website: Handcoding vs. templates vs. slicing
My Favorite Blogs:
Categories
Tag Archives: wordpress
New post at bizchickblogs.com: Making the Most of Your WordPress Blog’s Sidebar
Today I published my latest post for bizchickblogs.com – Making the Most of Your WordPress Blog’s Sidebar. The post covers 3 important reasons why the sidebar is an important area of any blog, one of the biggest mistakes bloggers should … Continue reading
Tags: bizchickblogs, blog, blogging, plugins, wordpress
WordPress: How to change the length of blog post excerpts
Here is the line of code that I use to change the default length (55 words) of excerpts in WordPress. Copy and paste this snippet into your functions.php file: function new_excerpt_length($length) { return 20; } add_filter(‘excerpt_length’, ‘new_excerpt_length’); Simply change the … Continue reading
WordPress: Add an “Email this page” link to your website or blog posts
Here is the simple line of code that I use to add an “Email this page” link to a WordPress website or blog. Simply add this code snippet to the template file where you want the link to show up … Continue reading
WordPress: How to show a different number of posts on different pages
Here is the line of code that I use to control the number of posts on particular pages in a WordPress site. Note: the website that this code was written for is set up to display different categories of posts … Continue reading
Project Spotlight: Automotive Instincts Blog Development
I recently launched a new blog which I developed for Automotive Instincts – an automotive repair service and maintenance business in North Ridge and Woodland Hills, California. The blog is built on WordPress (which, if you know me at all, … Continue reading
Tags: automotive instincts, blog, design, web, wordpress
WordPress: Manually control which blog pages show excerpts and which show full posts
Here is how to manually control which blog pages on your WordPress site display posts as excerpts and which show the entire posts. For the site that I developed this solution for, the pages are set up to display posts … Continue reading


Twitter