Hello,
I would use WP to build a site not blog. A website without interaction by visitors. I prefer to use/create post instead of page, because posts can be categorized. OK, some plugins add the ability to categorize pages.
So, to disable (hide, remove) the comment form below the posts, I add this css definition in the style.css file:
.nocomments,.comments,#nocomments,#comments,.entry-meta,.entry-utility,#respond, .reply
{display:none !important;}
This css definition will hide the web form, only in the page rendering, not in the HTML source code. So my question is:
- Does this CSS help to reduce/stop SPAM?
Other question:
- Disabling the option "Allow visitors to write comment" in the WP post options, is this enough to protect a WP site from SPAM?
Thanks and regards.