Tag Archive: WordPress

Things I Learned from #wcatl (and a Few I Learned on My Own)

WordPress

View more documents from Jane Wells. 2. The PHP and WordPress communities can learn a lot from each other. @technosailor gave a fantastic presentation (re: lecture in a discussion-y way) on how the core communities of both the PHP world and the WordPress world could stand to play nicer to each other.  Personally, I think that the problem comes from WP people starting out…

Continue Reading

Better Know a WordPress Tag: ‘siteurl’

WordPress

When you’re working on a development site it’s hard to set things up correctly because you know you’re going to change the site, and putting in elements that are more than likely “stationary”, such as links, will have to be changed, and that causes un-necessary headache when it comes time to move the site live.  But, in the light of wanting to make your…

Continue Reading

Beach Blogging 101 – Session 2: Plugin and Unwind

Tutorial

OK… so let me say first off that it’s not totally my fault that I didn’t get to finish my session last week.  The internet access in the condo we were staying in was nothing less than horrible (it was a great condo otherwise, but let’s just say that if it was online it didn’t get done very fast).  Mount on top of that…

Continue Reading

Displaying Comment Number Next to Posts

Tutorial

A lot of people have commented on my new design how they love the comment bubble next to the post title.  It's a great way to foster communication and showcase how many people are talking on your site.   So, if you want to add the same functionality to your site, here is the fastest way to do it!     background-image: url(URL-GOES-HERE);     height: 37px;…

Continue Reading

Displaying Future Posts in WordPress

Tutorial

If you do like I do and schedule posts ahead of time (especially on the podcast), there's a way inside of WordPress to show your readers what posts are coming up next: <?php $my_query = new WP_Query('post_status=future&order=DESC&showposts=5'); if ($my_query->have_posts()) {     while ($my_query->have_posts()) : $my_query->the_post(); ?>         <?php the_date(); ?> - <?php the_title(); ?>     <?php endwhile; } ?> This will display up to…

Continue Reading

A New Year, With New Possibilities

Announcements

I’m back, and with the new year came some rethinking and restructuring of how I do things / what my overall focus is going to be.  I’m all about transparency, and plus I’d like to share some of my goals for the year, because I want to get feedback from my friends and readers!  And so, here’s what I’ve got in the works for…

Continue Reading

Set Up An Amazing E-Commerce Site in 30 Minutes with WordPress

WordPress

Step 1: Get a great product (you’d be surprised how many people forget this step…) Step 2: Install WordPress Step 3: Set up a static front page (Settings > Reading)… create a page called “front page” and a page called “blog”.  Head to the options menu and select the reading tab.  Change the “Front Page Displays…” options to ‘Front Page: front page’ and ‘Posts…

Continue Reading

WordPress 2.7 is Coming To Town!

WordPress

The rumors are WordPress 2.7 will be coming to a download near you sometime tonight.  Release Candidate 1 is widely successful and I’m really looking forward to upgrading to the full version.  If you’re curious as to what the future entails, here are some great posts around the Internet showcasing the new goodness: The Official Codex Entry First Look at WordPress 2.7 A Tour…

Continue Reading