by DataWareHouse UK | Mar 21, 2013 | WordPress Blog
When it comes to saving options and settings in WordPress, you all probably know and use the Options API: add_option(), update_option(), get_option() and delete_option(). These functions are the first layer of another, broader and powerful, yet under-used, API: the...
by DataWareHouse UK | Mar 21, 2013 | WordPress Blog
The new WordPress admin bar facilitates the access of backend and frontend to areas of the back end. Of course, this new control element of WordPress is expandable and can be adapted to the needs of the user. In some areas and for various needs, quick access to...
by DataWareHouse UK | Mar 21, 2013 | WordPress Blog
Most themes (e.g. TwentyTen) use the comment_form() function to insert the comment form after posts. There are quite some hooks inside the function but they are hard to localize. The codex documentation isn’t too helpful, neither. To give you an easy overview...
by DataWareHouse UK | Mar 21, 2013 | WordPress Blog
With WordPress Version 3.1 two new functions were added which makes it easier to remove menu- and submenu-entries in WordPress Admin Panel. These functions removing entries of the menu-tree remove_menu_page or submenus – remove_submenu_page. /** * Remove a top...
by DataWareHouse UK | Mar 21, 2013 | WordPress Blog
If you’re developing a WordPress theme or plugin you may have had the problem that scripts or stylesheets are not reloaded from the source when you refresh the page because they are cached somewhere on the way from the server to the browser. There are various...