WordPress comes with some useful built in functions for sanitising and protecting content which are often underused. For example, ever needed to protect an email address on a site footer or contact template so it cannot be picked up by spammers? Enter ‘antispambot’!
Antispambot’s default usage is as follows where the email you want to hide is wrapped in the antispambot function. This will show the email address when displayed in a browser but will show a series of HTML entities such as “com” when viewing the HTML.
<?php echo antispambot( 'youremail@yoursite.com' ); ?>
If you wanted to take this a step further and include in a mailto link then you could use the following code:
<a href="mailto:<?php echo antispambot( 'youremail@yoursite.com' );?>"><?php echo antispambot( 'youremail@yoursite.com' );?></a>
Whilst its not a fool proof solution it will allow some protection for your on-site email addresses. Its something we use on every site we produce and you can read more about ‘antispambot’ at the WordPress Codex Antispambot.
How do you go about growing your agency? Do you rely on repeat business and…
Following on from yesterday's post “if you want to be tougher, be tougher”, this is…
We were recently asked by someone why we relatively expensive and charged more than someone else…
We are pleased to announce that our first e-book is now available to download on…
A nice mix this week of Wordpress guides and e-commerce posts make up this weeks…
GDPR features today and this is going to be a hot topic in WordPress and…
This website uses cookies.