What the heck is going on, you ask? Say hello to Tersus.

Bare bones? You got it. Tersus is an achingly simple WordPress theme without all the usual cruft. Please pardon the mess. This child theme is still under development.

CD

Category: Wordpress

2022-01-16

Is this thing on?

It’s been ages since I’ve touched this site other than to update the stuff powering it, and the web & WordPress have changed immensely since I started working on the Tersus child theme I reactivated. As WordPress went ahead with Gutenberg and its new block system, I started building sites with Beaver Builder and I didn’t look … Read the rest of this item

This item was posted by Chris Harrison.

2013-07-10

Securing WordPress

I panicked quite a bit when I discovered someone had been repeatedly hitting  xmlrpc.php on my install of WordPress. I didn’t realize it was happening until my host alerted me that I was potentially going to exceed resources for the month. I wasn’t sure what the cause of the overage was initially, so I had to … Read the rest of this item

This item was posted by Chris Harrison.

2012-02-10

Super Ginormous Alpha

It’s far from complete, but Super Ginormous is available on GitHub. It requires a fork of Tersus that will soon be merged – if approved ;) – into the core theme code. Check it out if you get a chance. I’d love to hear what you think. Got any specific requests on what you’d like … Read the rest of this item

This item was posted by Chris Harrison.

2012-02-08

Tersus Development

Over the next few weeks, the design of this site is going to evolve. I’m working on the first of several child themes for Tersus. Our original plan was to include several “flavors” but they did too much and limit others and their ability to build on top of what we’ve done. If you have … Read the rest of this item

This item was posted by Chris Harrison.

2012-02-01

DropPress

DropPress. Add photos to a Dropbox folder and have them automagically appear as a post on your WordPress site.

This item was posted by Chris Harrison.

2010-08-12

Add a Tweet Button to WordPress Posts

Want to add a Twitter Tweet button to your WordPress posts? It’s super easy: Horizontal Button: Tweet [php] <a href="http://twitter.com/share" class="twitter-share-button" data-url="<?php echo get_permalink(); ?>" data-count="horizontal" data-text="Check out <?php the_title(); ?> on < ?php bloginfo( ‘name’ ); ?>" data-via="YOURUSERNAME">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script> [/php] Vertical Button: Tweet [php] <a href="http://twitter.com/share" class="twitter-share-button" data-url="<?php echo get_permalink(); ?>" data-count="vertical" data-text="Check … Read the rest of this item

This item was posted by Chris Harrison.

2010-07-27

How to display total number of Custom Posts on a WordPress site

Based on this quick tip from WPRecipes, I was able to quickly figure out how to count and display the number of Custom Posts (of a particular type) that I had on a site. [sourcecode language=”php”] <?php $numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE (post_status = ‘publish’ AND post_type = ‘listing’)"); if (0 < $numposts) … Read the rest of this item

This item was posted by Chris Harrison.

2009-12-23

Badges

Here are some 125×125 badges I made for Wordcamp Atlanta: And some 300×75 badges:

This item was posted by Chris Harrison.

2009-12-16

Post Thumbnails in RSS feeds

the_post_thumbnail is one of my favorite additions to WordPress 2.9, but I recently ran into a problem… the images I had set as my post thumbnails weren’t being included in my RSS feed. Assuming you’ve already added support for thumbnails to your theme, you should be able to add this snippet to your theme’s functions.php … Read the rest of this item

This item was posted by Chris Harrison.

2009-05-16

WordPress 2.8 beta1 Released

WordPress 2.8 beta1 was just released.What’s new? Lots, apparently. If you’re using WordPress 2.7.1 and want to upgrade using Tools > Upgrade all you have to do is open /wp-includes/version.php and change the version number from 2.7.1 to 2.8. Then run Tools > Upgrade. The latest development version will be installed when you upgrade. Note, … Read the rest of this item

This item was posted by Chris Harrison.