What differences does this plugin have compared to other CSS Naked Day plugins?
- This plugin removes all CSS stylesheets from the page before it sends the data to the viewers' browsers.
- It doesn't use client-side scripting to remove styles, which may be turned off or unsupported in other browsers,
so everyone would see your page in its natural, naked form.
- It doesn't require the user to edit his/her theme files.
How could I display a message only on the 9th of April telling why my site is naked?
Use the is_naked_day() function inside an if () block. is_naked_day() returns true when it is April 9,
otherwise it returns false.
Example:
<?php if (is_naked_day()) { ?> Message why my site is naked. <?php } ?>