wordpress

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

WordPress update without ftp

To use wordpress update and install plugins without ftp add following line to wp-config.php. define(‘FS_METHOD’, ‘direct’); Read more about proper…

abstract-business-code-270348

MailChimp List Subscribe Form

MailChimp List Subscribe Form plugin for WordPress. Can be found https://wordpress.org/extend/plugins/mailchimp/

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…