Quick Tip: Tag pages to get better search results page

You know that search field on your WordPress site? Have you ever tried looking for certain keywords or phrases that your readers might try typing in? Chances are that quite a few common keywords aren’t showing the most relevant posts or pages that you want them to do. Sure, you can easily add tags to posts. But how about pages? Unfortunately, WordPress doesn’t currently allow tags on pages, but you can use a simple plugin called “Page Tagger” to add tags to important pages. It adds a sidebar widget on the pages editor just like posts.

You can team up Page Tagger plugin with a tool like Relevanssi to fine tune your search results so you give your audience what they’re looking for!

Get it: Page Tagger

Quick Tip: Add year automatically to footer

If your theme didn’t come with an automatic copyright year function, you can quickly add this code to the “footer.php” file so the current year shows up.

<?php echo date(‘Y’); ?>

If your site is more than two plus years into it, you can add your first year as a fixed date and then add add the snippet above.

Quick Tip: Preview a Theme without a Plugin

Did you know that you can preview an installed WP theme without having to install a new plugin?
This would be useful if you’re switching over a WP site to a theme that’s a work in progress but didn’t want public visitors to see it yet.

Simple add this to the end of your published site’s URL:

?preview=1&template=twentyten&stylesheet=twentyten

For example, this site with the Twenty Ten theme would be:

http://wpverse.com/?preview=1&template=twentyten&stylesheet=twentyten

Simply replace the name of your theme in the example after both template and stylesheet equal (=) signs. What if you’re not sure what the exact theme name is – for example if the theme name has spaces in it? To find out, go to the “Manage Themes” page, then hover your mouse over the “Activate” button of the theme you want to try out. In the bottom status bar of your browser, you’ll see the theme name that you’ll want to use.