Add custom fields under wp general settings
To add custom fields under wordpress general settings without hacking core code use this as example. Of course you can…
To add custom fields under wordpress general settings without hacking core code use this as example. Of course you can…
Just a small example of how to build custom menu output in WordPress. $menu_args = array(‘menu’ => ‘Main menu’, ‘echo’…
When using hook “manage_MY_TYPE_NAME_posts_columns” or “manage_MY_TYPE_NAME_posts_custom_column” on WP version >= 3.1 the syntax is little bit changed. Here’s the example:…
Ever had a situation where you have given admin right to the client? What usally happens is that client will…
GeoMashup plugin usage in WordPress template files. <?php echo GeoMashup::map(); ?>
Standard solution for developing WordPress header. SEO friendly and can be copied every time new template is created. <!DOCTYPE html…
Often we have custom fields in containers ( DIV, SPAN etc. ) designed by CSS. Here’s a solution for displaying…