Are you getting lots of 404 errors in the log because of some urls having patterns like ” ++liker.profile_URL++ ” ? How to reduce 404 errors created by ++liker.profile_URL++ ? Here is the solution...
Tagged: wordpress
How To Talk To A Developer
As a fresh semester starts up for me teaching web development, now seems a good time to talk about communication. Communicating code and design problems is a skill, something that has to be learned...
Should I Learn XHTML Or HTML5?
Deciding when and how to teach HTML5 is perhaps the most significant challenge facing web development in formal education. Whether you are learning in a classroom, online, or from books, determining which technology to...
HTML Forms: Hints and Tips
A well-designed form is a rarity, and a huge boost to any website. Most forms, online or off, are not well designed. Following a few simple rules will help both your client and their...
A List of Free Public CDNs for Web Developers
Website speed is crucial for developing the best user experience possible, because, well, no one likes to wait for web pages to load. One of the simplest ways for improving the performance of a...
Change WordPress Excerpt Length
You can add the following code in your theme’s functions.php file to change the WordPress excerpt length. Change the number(100) to a desired length. add_filter(‘excerpt_length’, ‘new_excerpt_length’); function new_excerpt_length($length) { return 100; }