I've used a couple of plug-ins to protect my content, in particular WP-Protect. This disables right-hand mouse clicking and image dragging. However there is no facility to UN-protect certain posts/pages. Anyone have any idea on how to manage protection exceptions?
hey
try changing line 131-133 to this concept:
if($wp_wpp_rightclick == true && !is_single(array(17,25,22))) { wpprotect_rightclick(); }
if you didn't notice i added
&& !is_single(array(17,25,22))
where the numbers represent post id, if you don't know how to get them
see here:
Genius! Works! You've made my day, yehudah. Nice one ;)