4 Hidden WordPress Features That Are unknown to Many

You might already have used WordPress for a long time and get the hang of it. Well, here are 4 hidden WordPress features for you to maximize your WordPress blog and get the most out of it.

1. Turn off post revision

One of the new feature in WordPress 2.6 is the post revision. This is a great feature that does a version control for all your posts. At any point of time, you can see what was changed in the post, by whom and when and revert back to the previous post if necessary. For a multi-authors blog, this is a splendid feature, but for single user, this could possibly lead to many duplicate of the same post that junk up your database.

By default, the post revisioning feature is turned ON by default and there is no options to turn it off in the Admin menu. To disable it, you have to download your wp-config.php file from the server (using any FTP program), add the following line:

define('WP_POST_REVISIONS', false);

after the line define ('WPLANG', '');

Now if you want to keep the post revisioning feature, but limit the number of revision copy, you can paste this line instead

define('WP_POST_REVISIONS', no_of_revision);

and replace the no_of_revision by the no of revision copy you want to keep.

Now, don’t forget to save the file and upload it back to your server.

2) Configuring secret keys

WordPress 2.6 includes three secret keys AUTH_KEY, SECURE_AUTH_KEY, and LOGGED_IN_KEY to make your login session more secure and more difficult for hacker to crack.

Similarly, there is no way to add this in the Admin menu. You have to configure it via the wp-config.php file.

Open up your wp-config.php (Assuming you are using WordPress 2.6 and have downloaded the file from your server), you should see the following three lines:

define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase.

Now, go to http://api.wordpress.org/secret-key/1.1/. You should see the same three lines of code with a random weird string in the place of ‘put your unique phrase here‘.

wp-secret-keys

Copy the three lines from the site and replace the same three lines of code on the wp-config.php.

Save and upload the wp-config.php to your server.

(If you are using WP2.5, you will only see one line define(‘SECRET_KEY’, ‘put your unique phrase here’);. You can get the unique SECRET_KEY from http://api.wordpress.org/secret-key/1.0/)

3) Split long post into two or more pages

Sometimes you have written a long post and it become very lengthy and uncomfortable for your reader to read. What you can do is to split it into several short posts. To do it, simply add a

to the part of the post that you want to split.

To show the pagination at the bottom of the post, insert the line

to your theme single.php after the line

4) Add a thumbnail for each post

Have you ever wondered how others manage to embed a thumbnail for every single post? Well, you can simply do it by adding a custom field into your post.

wp-custom-fieldIn your WordPress Write section, scroll down to find ‘Custom Fields‘. Click on it to reveal the input fields. Under the Key, type ‘thumbnail‘. Under the value, type the URL of the thumbnail image that you want to embed. Click ‘Add Custom Field‘.

To display the thumbnail on your blog, you can query it by inserting the following line to your wp theme.

<?php%20echo%20get post meta(%24post >ID,%20'thumbnail',%20true);%20?>

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Damien Oh Avatar

Read next

Suzanne Simard sealed paper birch and Douglas fir seedlings inside plastic bags, fed them carbon-14 and carbon-13 dioxide, and nine days later found carbon had crossed between species through fungal threads in the British Columbia soil beneath her boots
A species of jellyfish called Turritopsis dohrnii can revert its adult cells back to a juvenile polyp stage when injured or starving, effectively restarting its life cycle, and biologists have so far failed to identify any natural limit to how many times it can do this.
A Japanese man named Jiroemon Kimura, who lived to 116, was born in 1897 when Queen Victoria still ruled and died in 2013, meaning a single human life personally overlapped with the invention of the airplane, the atomic bomb, the internet, and Instagram
The Hollywood sign originally read HOLLYWOODLAND when it was built in 1923 as a real estate advertisement for a housing development, and it was only meant to stand for 18 months, but nobody ever got around to taking it down and the city eventually adopted it as a landmark
Almost all of the world’s internet traffic does not travel by satellite but through fibre-optic cables lying on the ocean floor, a hidden web of wires crossing the deepest parts of the sea to connect the continents.
People who flip their phone face down on every table aren’t being secretive. They figured out that staying interruptible meant handing their time to whoever rang first
Twitch vs. Facebook Gaming vs. YouTube Gaming: What’s the Best Live Game Streaming Platform?
Chrome Extensions Ownership Transfer is a Direct Threat to You: How to Stay Safe