Best WordPress Real Estate Themes

3

By : Josh Stauffer

Updated: 1/18/2010

Real Estate WordPress ThemesIf you’re looking for the best WordPress real estate themes then you’ll be glad you found this collection of the themes I put together. You may be wanting more of a corporate real estate site or even your very own personal site that lists the real estate properties that you deal with. Either way, in the list below you’ll find real estate WordPress themes that satisfy both desires.

Practically ALL of these real estate themes have different color options to choose from, lifetime support & upgrades, are search engine optimized, and are extremely affordable. These reasons alone will help differentiate yourself or company and allow you to rise above the competition. But don’t take my word for it, see for yourself!

Main Street Theme

Main Street Theme

Main Street Real Estate Theme by Gorilla Themes

Price: $79.95

Demo & Information | Download | Preview Theme

AgentPress Theme

AgentPress Theme

AgentPress Real Estate Theme by StudioPress

Price: $99.95

Demo & Information | Download | Preview Theme

Broker Theme

Broker Theme

Broker Real Estate Theme by Gorilla Themes

Price: $79.95

Demo & Information | Download | Preview Theme

Agent Theme

Agent Theme

Agent Real Estate Theme by StudioPress

Price: $59.95

Demo & Information | Download | Preview Theme

Bel Air Theme

Bel Air Theme

Bel Air Real Estate Theme by Gorilla Themes

Price: $79.95

Demo & Information | Download | Preview Theme

deCasa Theme

deCasa Theme

deCasa Real Estate Theme by ThemeShift

Price: €39

Demo & Information | Download | Preview Theme

Homeowner Theme

Homeowner Theme

Homeowner Real Estate Theme by Gorilla Themes

Price: $79.95

Demo & Information | Download | Preview Theme

Open House Theme

Open House Theme

Open House Real Estate Theme by Gorilla Themes

Price: $79.95

Demo & Information | Download | Preview Theme

Real Estate Theme

Real Estate Theme

Real Estate Theme by ThemeForest

Price: $35

Demo & Information | Download | Preview Theme

Real Estate Theme

Real Estate Theme

Real Estate Theme by ThemeForest

Price: $25

Demo & Information | Download | Preview Theme

Realist Theme

Realist Theme

Realist Real Estate Theme by ThemeForest

Price: $25

Demo & Information | Download | Preview Theme

Smooth Theme

Smooth Theme

Smooth Real Estate Theme by Gorilla Themes

Price: $79.95

Demo & Information | Download | Preview Theme

Villa Grande Theme

Villa Grande Theme

Villa Grande Real Estate Theme by ThemeForest

Price: $30

Demo & Information | Download | Preview Theme

WP Pro Real Estate Theme

WP Pro Theme

WP Pro Real Estate Theme by ThemeForest

Price: $25

Demo & Information | Download | Preview Theme

Get Post Slug in WordPress

7

By : Josh Stauffer

I needed to get just the post slug for a project I have been working on. I found several sites that had similar ways of getting the post slug but I came up with an approach that utilizes WordPress’ get_permalink() and PHP’s basename().

The common approach:


$post_obj = $wp_query->get_queried_object();
$post_ID = $post_obj->ID;
$post_title = $post_obj->post_title;
$post_slug = $post_obj->post_name;

My approach:


$slug = basename(get_permalink());

Free Silhouette Images

0

By : Josh Stauffer

There have been several times in the past that I can remember designing something and thinking that using a silhouette image would be cool. I often abandon this idea because I can never find what I am looking for and for the price that I want it… FREE.

Finding free silhouette images just became a little easier. I now have “85 Free High Quality Silhouette Sets” to choose from, thanks to Hongkiat.

Track 404s with Google Analytics

0

By : Josh Stauffer

Tracking 404 pages with Google Analytics is extremely simple. If you have a custom 404 page to handle your 404 pages, you just need to make a simple change in your GA tracking code.

Change this line of code:

pageTracker._trackPageview();

To this:

pageTracker._trackPageview("/404.html?page=" + document.location.pathname + document.location.search + "&from=" + document.referrer);

So the final GA tracking code for your 404 page should look like this:

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx-x");
pageTracker._trackPageview("/404.html?page=" + document.location.pathname + document.location.search + "&from=" + document.referrer);
} catch(err) {}
</script>

That’s all there is to it. However, for my purposes I am wanting to use this Analytics code with WordPress. I usually just insert my Analytics code before the closing </body> in my theme’s footer.php file. Since this technique for tracking 404s requires slightly different code than the standard GA tracking code, you can use PHP and the WordPress is_404() function to display the correct code. Just paste this code into your theme’s footer.php file:

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx-x");
<?php if ( is_404() ) { ?>
pageTracker._trackPageview("/404.html?page=" + document.location.pathname + document.location.search + "&from=" + document.referrer);
<?php } else { ?>
pageTracker._trackPageview();
<?php } ?>
} catch(err) {}
</script>

Please remember to use your Analytics Account ID and not UA-xxxxxxx-x.