Categories
Blogging WordPress

SEODenver.com is new home of Denver Web Design & SEO Blog

I’ve taken the plunge: the katzwebdesign.wordpress.com site is now mapped to seodenver.com, a domain I purchased last year. I’m not sure what the long-term plans are for this domain, but at least I’ll be building links to my own domain, not to WordPress.com…

Categories
Code SEO WordPress

SEO Randomizer: Save the Value of Your SEO'd Links

Update: Now use the SEO WordSpinner plugin to implement this concept.Use the get_seo_spin() PHP function in your theme’s footer.php file. Footer links are dropping in SEO value How to stay relevant while getting great links As a web designer and SEO, I place links in the footers of most of my designs. Clients don’t mind […]

Categories
Code SEO WordPress

Nofollow SEO for your WordPress Functions

While working on a recent website, I became frustrated by the lack of nofollow support in many WordPress functions.  Make that, most WordPress functions. There are a few WP functions that I wanted to add nofollow to, so here’s a list and a download link:

Categories
Web Design Portfolio WordPress

SteveSpangler.com Web Design Launched

Visit Katz Web Design-developed SteveSpangler.com As announced in August, Steve Spangler chose Katz Web Design to develop their blog. Their previous blog was aging and didn’t provide the functionality they needed. I was provided with a design by Blake Sumrall (at Steve Spangler, Inc.) and was tasked with converting it to a website. The development […]

Categories
Code WordPress

How to View All (or more) Posts at once in WordPress Administration

Here’s the deal: I wanted to be able to temporarily see all the posts at once in the WordPress Administration, so I went into the wp-admin folder, and poked around, and became frustrated: it wasn’t that simple! Go to /wp-admin/includes/post.php and scroll to line 517. You will see wp(“post_type=post&what_to_show=posts$post_status_q&posts_per_page=15&order=$order&orderby=$orderby”); Change the posts_per_page value to whatever […]

Categories
Web Design Portfolio WordPress

MomJobSeeker.com launched!

Mom Job Seeker prepares mothers re-entering the workplace after their kids have grown up a bit. April Stensgard, owner, contacted Katz Web Design with the goal of having a business blog that would facilitate online event registration. Faced with this task, I took WordPress, added the eShop plugin, and Event Calendar and Event Manager (now defunct) and […]

Categories
Code Constant Contact WordPress

Constant Contact WordPress Widget – Add a Newsletter Signup Form to your Sidebar

This widget adds a Constant Contact signup form to your blog’s sidebar without touching code. Download the Widget Includes options for Title, Button Text, Tag Wrapper, Form ID Code, and Intro Paragraph, show or hide CC link, Safe Subscribe link, and template options. New: add a form in your page or post by writing [constantcontact] […]

Categories
Code WordPress

Get medium image size in WordPress

This is for everyone who’s been trying to find out how to get the medium image size of a post attachment in WordPress: You’ve got to send the function the ID you’re trying to get the medium images for. $medium = wp_get_attachment_image_src($picture->ID, ‘medium’, false); $med_url = $medium[0]; $med_width = $medium[1]; $med_height = $medium[2]; There are […]

Categories
Code WordPress

How I fixed WP-DownloadManager 404 errors

I use LesterChan‘s Download Manager plugin, and it’s great. Good interface, simple purpose.  I recently found out that after upgrading a client’s site to WP 2.5, WP-DownloadManager was no longer working.  I followed the documentation on the plugin website, including resetting the permalink structure, but nothing worked. For some reason the re-write wasn’t working properly: all […]

Categories
WordPress

Admin Drop Down Menu plugin does not break WordPress 2.5 Image Uploader [updated]

The plugin has been updated. The multitudes may celebrate fewer clicks! As sad as it is to admit (since the plugin has saved me thousands of clicks), Admin Drop Down Menu by Ozh breaks the WordPress image uploader. If you’ve tried everything WordPress tells you to do in order to fix that Image Gallery feature […]