Now and then little snippets are pretty useful. For a fix in a Premium-Theme, I needed a kind of evaluation, where I am in the site structure and with little effort I was able to expand the classes and react with CSS. The following code shows the basic for it[...]
A small contribution for all those using WordPress as a backend, framework or something similar. The applications, especially in the B2B sector, becoming more and more, as do the questions. So far, I’ve always liked to recommended BackPress. But even a well-maintained standard is feasible, with all its advantages in[...]
It wasn’t just a one-time event! The Automattic Worldwide WP 5k is back again in 2012! Set your timers for April 29th! At Automattic we work from all over the world, and we use internal blogs for socializing and exchanging non-work ideas in addition to making WordPress.com and our other products more awesome.[...]
Fonts have become great favorites of the customers, with relatively little effort you can achieve a lot – at least if you understand some of the typography and use solutions that are easy to implement. In this context, I had experiences with own fonts from designers and the costs are[...]
Each time I see someone use strlen() I cringe. It will break. Despite its name, strlen() doesn’t count characters. It counts bytes. In UTF-8 a character may be up to four bytes long. So what happens if we use strlen() and its companion substr() to shorten the title of post?[...]
If you have a blog post with many images inside, like design inspiration and photo showcase articles then you may feel how slow it loads. But with lazy load plugin, it can make your page load faster. When you install Lazy load plugin it only loads the image that is[...]
Throughout WordPress the class WP_List_Table is used to display data, e.g. users, plugins, comments, or posts. The class contains almost all necessary methods for displaying, sorting, paginating, and searching data and and what is more obvious than to use it for your own plugins? This article tries to give you[...]