Posts Tagged ‘Wordpress Tip’

Why All-In-One SEO Deactivates

In the past I’ve been pretty pissy about the All-In-One SEO plugin from Michael Torbert automatically deactivating itself after updates. My reasoning:

  • If you update and forget to re-activate (somewhat hard to do since it reminds the

Display most recent comments with Gravatar

In order to display the 5 most recent comments with their gravatars, paste this code anywhere on your theme files. To get more or less than 5 comments, change the number 5 on line 2.

<?php
$query = "SELECT *

How to Define Your Own Dashboard Logo

This post was generated by an RSS Feed from WP Recipes

The first thing to do is to get your logo ready. Size might be 30*31px and the logo must be uploaded the images directory of your theme…

How to detect mobile visitors on your WordPress blog

This post was generated by an RSS Feed from WP Recipes

To achieve this recipe, you first have to get the code from detectmobilebrowsers.mobi and upload it to your theme directory.

Once done, simply open your header.php

Insert Google Analytics without editing your theme

This post was generated by an RSS Feed from WP Recipes

Just insert the following code into your functions.php file, and you’re done. Don’t forget to paste your Google Analytics code on line 5.

<?phpadd_action('wp_footer', 'ga');

function

WordPress tip : Better page navigation

This post was generated by an RSS Feed from WP Recipes

This recipe is extremely easy to implement : open you index.php file and replace your current navigation by the following:

<?php if ($paged > 1) { ?>

How to Develop WordPress Themes Behind the Scenes

A reader recently asked about how to develop a theme on a live site such that:

  • All visitors will see the current theme
  • Only the designer will see the new theme
  • All site plugins will work with the new

WordPress tip: Send article to a friend by email

This post was generated by an RSS Feed from WP Recipes

To apply this recipe to your blog, simply paste the following function into your functions.php file, and that’s all. Hard to do something simpler!

function direct_email($text="Send by

10 CSS Snippets to Save Precious Time

Today, I have compiled a set of 10 CSS snippets that can save you a lot of time and effort. These codes are needed frequently when developing CSS-based websites or themes. Just bookmark these codes (Ctrl + D) so that…

How to Build a Top Sliding Login Panel

sliding-login-panel

Many times, I get requests from my clients who want to implement a Sliding Login Panel at the top of their WordPress blogs. With jQuery and the WordPress default login code, its very easy to build. Here is what…