If like me you struggle at times to think of how to market the content you’ve just spent time writing and perfecting, here’s a quick suggestion… Let it speak for itself! Using Push Engage you can set up push notifications that allow your visitors to subscribe easily and when you send an alert out, it…
Browsing Category
WordPress
Enable threaded comments
Add the following code to the functions.php file to enable threaded comments. Simple, easy but a great feature to add to your site.
Remove WordPress version
When a visitor looks at your site, they can often see which version of WordPress you are running. For security reasons, it’s often best to hide the version numbers in case there are any vulnerabilities you are yet to patch with an update. Use this code to hide your WordPress version number:
Remove Private/protected notices from posts
If you create and publish a private or protected post, the title will be amended with this status. Adding the below code to the functions.php file will remove the title alteration and make things look that little bit nicer.
HOWTO: Setup the Google Site Kit WordPress plugin
One of the most important things with any blog is to know how well it’s performing – setting up the Google Site Kit WordPress plugin will give you all the information you need. WARNING: Google Site Kit WordPress Plugin pre-requisites: Before installing this plugin you need to set up Google Analytics and Google Search Console…
Avoid WordPress brute force password attacks
If no modifications are made to your website, an intruder can make an unlimited number of incorrect logins to your website. Some people use a massive dictionary of password to keep trying and trying until one may work to login to your site – this is a brute force password attack. One of the best…
Ensure you maintain short titles for SEO
Using short titles to stay focused on SEO, this snippet of code will limit the number of words allowed in the title of your post or page. You can set the number of words to whatever you wish – in this example, the maximum number of words is set to 8. function maxWord($title){ global $post;…