When developing a theme you should execute the wp_head and wp_footer functions in your theme’s header and footer. The functions are hooked with an action that enables other plug-ins to add necessary files and code. But it is always good…
I do not know why the excerpt meta box is not shown by default when editing pages. I often list pages when using WordPress as a CMS, and I very often use excerpt when doing lists. So how do you…
WordPress by default filters out potentially harmful and/or invalid HTML. But in some cases you might want some of that invalid HTML! One of those cases occurred today when we needed to embed a Google Form in a post. To…
When developing a simple form to use in your WordPress theme or plugin you often want to post to the same page. To do so, simply leave the action attribute empty in your form. Notice that your_name is used, using…
The Shortcode API is an excellent way to embed HTML code in your posts and pages without much effort from the user. In a recent project we had great use of the Shortcode API when we needed parts of our…