Wordpress development

abstract-business-code-270348

WordPress custom menu display

Just a small example of how to build custom menu output in WordPress. $menu_args = array(‘menu’ => ‘Main menu’, ‘echo’…

abstract-business-code-270348

Custom columns for custom post type

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:…

abstract-business-code-270348

Plugin GeoMashup

GeoMashup plugin usage in WordPress template files. <?php echo GeoMashup::map(); ?>

abstract-business-code-270348

XHTML SEO friendly sample header

Standard solution for developing WordPress header. SEO friendly and can be copied every time new template is created. <!DOCTYPE html…

abstract-business-code-270348

Show custom field if one exists

Often we have custom fields in containers ( DIV, SPAN etc. ) designed by CSS. Here’s a solution for displaying…