Archive for Web

WordPress Custom Fields and Checking for Values

I have been building sites with WordPress for about a year now and I love it. I love the versatility that WordPress offers and I have had great success with Search Engine Visibility. I just recently read a great article on how to use custom fields to take your wordpress site to the next level.

I setup a few pages on my site StamfordCTGuide, which one section in particular, hotels. I added a few hotels and ran into some issues of missing images. Instead of adding the missing images image to each custom field entry in Admin. I wrote a little php if statement to check to see if there is a value present, and if there isnt - to show a default "no image available".

Here is the php that I wrote, its simple - but really my first experience with writing php. I have been doing ActionScript 3 for about 6 months, and the basic principles are the same.

PHP:
  1. <a href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php
  2.             if ($hotels_img != null) {
  3.             echo $hotels_img[0];
  4.             }
  5.             else if ($hotels_img == null) {
  6.             echo "http://www.stamfordctguide.com/wp-content/themes/stamfordctguide/images/noimage.gif";
  7.             }
  8.            
  9.             ?>" border="0" width="50"></a>

Comments

The Best of Web Conferences 2008

Comments (1)

Top 10 Job Websites for Open Source Web Designers and Developers

If you are a web designer, front end developer and/or an open source web developer looking for a job or freelance work, there are many websites online with job postings targeted to just what you do. Here is the top 10 in no particular order that I have found, used and highly recommend.

1.
Fresh Web Jobs targets web designers and developers that are looking for freelance and/or fulltime opportunities.

2.
From the creators of Basecamp and Backpack, the 37 signals job board is a great place for web designers and open source developers to find jobs.

3.
Creative Hotlist is a great resource for finding creative jobs, they also offer a place for you to host your online portfolio.

4.
Authentic Jobs was created by Cameron Moll, a revolutionary in the CSS/Web Development space. His site is a great place to search/find web design and development positions across the USA.

5.
Think Vitamin is an online publication/resource for web designers, they also have a jobs section for css/web designers looking for work.

6.
Freelance Switch is the ultimate resource for freelancers. They have an extensive freelance job board where you can apply to jobs for $7/month, but its free to post jobs.

7.
Slashdot is a more general web developer/programmer job board, their tagline is "Jobs for Nerds".

8.
Krop is a site dedicated to listing creative and tech jobs, they have a history of listings for many notable fortune 500 companies such as Facebook, New York Times and Apple to name a few.

9.
Coroflot is similar to Creative Hotlist in that they offer job listings and portfolios, its like a community for creatives.

10.
Xemion is a web designer and developer community that also has job listings.

This list is comprised of the most popular open source web designer and developer job boards, if you see a site that fits into this post and you believe should be added, please let me know.


JobPile aggregates all of the above job sites into one site, allowing you to search all of them in one place. Its a great site!

Comments (3)

Onerutter.com has been hacked.

Yea, my site has been hacked. Someone got in and deleted all my pages, all of my tutorials that I spent hours creating to help others on the web. Some Jerks overwrote that so they could earn a buck with their stupid spam ads. Im so mad right now, I was doing something good for the internet and look what happened.

Comments (2)

Google Maps API for Flash

Just as Yahoo! created an API for Flash a few months ago, Google has followed and created one too. Im looking forward to playing around with this one, I have already messed around with the Yahoo! api. Yahoo! has done a great job of including well defined documentation.

http://code.google.com/apis/maps/documentation/flash/

Comments

« Previous entries