Author Archive

1
OCT 09

Show future posts in WP

Here is a code snippet I’ve made with the help of someone on the WP forums. I’ve also made a website which acts as a calender/overview for future posts by users.
A while later I will publish it as a plug-in which does the same trick. Continue reading…

Tags: ,

1
OCT 09

Disable the WP autosave or revision feature.

These code snippets allows you to disable the autosave or revision function which are turned on by default in WP.

function disable_autosave() {
 wp_deregister_script('autosave');
}

add_action( 'wp_print_scripts', 'disable_autosave' );

To disable the revision feature you should add this line somewhere in your wp-config.php:

define('WP_POST_REVISIONS', false);

Continue reading…