3 WP Tricks You Don’t Want to Miss

Posted by
|

WordPress now has about 17,098 listed plugins on their site which gives users LOTS of options to choose from depending upon the specific functionality they would like to have on their website.

Looking for the right plugin or coming across an interesting one you might like, can however be tough with so many of them available. Also, there are several things that can be done without a plugin; you just need some help in the right direction.

Here are 3 WP tricks I recently came across and really liked:

1. Random Redirect

random-redirect-wp-pluginThis is an amazing plugin that helps you create a link to yourblog.example.com/?random which automatically redirects your website visitor to a random post on your site.

This works great, especially if you have a site where fresh content is posted regularly by a number of different authors. I think it creates a great impression of your site right away for your visitors.

2. Styling Individual Posts Using the_ID

Suppose you want to style a specific post in a different way than all others. To make this work, find the code similar to the following in your index.php

<h3><?php the_title(); ?></h3>

The h3 tag might be >h2> or <h1> in your theme template.

Change this to the following:

<h3 id=”post-<?php the_ID(); ?>”><?php the_title(); ?></h3>

As you can see, we added the code-   id=”post-<?php the_ID(); ?>” to the original line so that when a post is viewed in the browser, it will generate an ID for each post and the name of the ID will include the post ID associated with that particular post. E.g. For Post with ID 45, the above code will automatically generate <h3 id=”post-45″><?php the_title(); ?></h3>

Now, open your stylesheet (style.css), create a new style for ID post-45 & specifiy unique styling.

E.g. #post-45 { background: #113355; font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif; }

 

3. Social Metrics

social-media-metricks-plugin-wp

Social Metrics is a Social Media Analytics tool that helps you track your WordPress site performance on popular social networks. This data can be very useful to decide which social media websites are working better for you and where you should promote your content the most. It even lets you access Social Metrics from your WP Admin bar.
 

Avatar of %s
Posted by admin
Follow author using RSS | View Profile | View all posts by admin →
Web designer, food & travel lover

What next?

Add your comments | Post your own article



Comments

  1. Hollywood Web Design

    April 3, 2012

    Thank you for sharing such useful tips. It will be really of great help for new web designers like me. Sharing your post to my team. Staying tuned for more great web design tips.

Add a comment

*

Why Join the Network?

The 83 Oranges network is for everyone interested in web design, social media, online marketing, branding & more. It’s the place for enthusiasts and professional alike to connect with others with similar interests and share knowledge & ideas.

About 83 Oranges

With happy clients across the globe, 83 Oranges is the one stop solution to all your design & development needs.

Follow us: Twitter | Google + | Facebook

Copyright © 2012 83 Oranges. All rights reserved.

More in Everything Web, WordPress (24 of 49 articles)
gmail-new-look-features-4


Google has rolled out a new look for Gmail that can be activated by logging into your gmail account and ...