We have to use a little trick! In other words, we will remove the meta box and then we will add a new one again:
Category / PHP
Many developers use the HTML comment in order to analyse the page by using the “view source” feature provided by almost all browsers. However, these comments will be visible to everyone. Also, they are sent from the server to the client and that could take a lot of needless bytes. If you don’t need to […]
Let’s see how to convert a date from yyyy-mm-dd hh:mm:ss to yyyymmddhhmmss. This can be useful when you’ll use sort functions for example (such as asort()). Elegant: Obvious: Insane: