I’m looking to find a way to force authors (including admin & editors) to preview their post before publishing. Is this possible, if so does anyone know the easiest way to achieve this?
I’m running WP3.5.1. Thanks
I’m looking to find a way to force authors (including admin & editors) to preview their post before publishing. Is this possible, if so does anyone know the easiest way to achieve this?
I’m running WP3.5.1. Thanks
Comments are closed.
This is completely untested but I think the concept is good, and good idea too though I’d have an angry mob with pitchforks to face.
it in either
$wpdb->options
or$wpdb->postmeta
. I haven’tquite decided which would be better, and it probably depends on
details of the implementation. (But probably
$wpdb->postmeta
).So…
Then check the key before you allow publishing.
You might want to unset that key when the post is published to force the preview check again if it is edited.