Beautify your WordPress HTML output with HTML Tidy
As you may have noticed, HTML that WordPress outputs is usually very, very messy. Use HTML Tidy to beautify the markup.
As you may have noticed, HTML that WordPress outputs is usually very, very messy. Use HTML Tidy to beautify the markup.
Is the WordPress admin bar distracting you when you are viewing your website as a logged-in user?
Redirecting all www-prefixed requests to a non-www address in Nginx is easy with this catch-all configuration.
Every website should be accessible by using addresses like example.com and www.example.com. On the other hand you should never have a duplicate content by serving the same content on different URLs. Because of these UX and SEO principles it’s best practice to create a permanent redirection from www.example.com to example.com or vice versa. When hosting a static website with AWS S3 and … Read more
Google respects relevant content and ranks sites with relevant content higher. But what relevant content actually is? 1. Matching keywords (but enough is enough) The most important signal that tells Google that your website has relevant content is matching keywords. Your content should contain keywords that match the user’s search query. Relevant content is not … Read more
Detecting scroll direction with just pure JavaScript is quite straightforward. First step is to create an event listener for a scroll event. Event handler function that we pass to this listener is called every time user scrolls the page up or down. Inside the event handler we compare the current Y position and the previous … Read more