Author: Taavi

  • Scroll to an anchor

    Scroll to an anchor

    Smooth javascript scrolling. <script type=”text/javascript”>// <![CDATA[ function goToByScroll(id){ $(‘html,body’).animate({scrollTop: $(“#”+id).offset().top},’slow’); } // ]]></script> <a onclick=”goToByScroll(‘1’)” href=”javascript:void(0)”>Go to anchor 1</a> <div id=”1″>content</div>

  • Disable wordpress core updates display

    Disable wordpress core updates display

    Ever had a situation where you have given admin right to the client?  What usally happens is that client will update the wordpress core. If we are talking about custom solutions, its most definitely not safe to update the core. Here’s a solution for disabling  the opportunity to update WordPress core. add_action( ‘init’, create_function( ‘$a’,…

  • MailChimp List Subscribe Form

    MailChimp List Subscribe Form

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

  • Plugin GeoMashup

    Plugin GeoMashup

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

  • XHTML SEO friendly sample header

    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 PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml” <?php language_attributes(); ?>> <head profile=”http://gmpg.org/xfn/11″> <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” /> <title><?php wp_title(‘|’, true, ‘right’); ?> <?php bloginfo(‘name’); ?></title> <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>”…

  • Show custom field if one exists

    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 custom field content, if one exists. <?php if ( get_post_meta($post->ID, ‘custom-field-name’, true) ) : ?> <?php echo get_post_meta($post->ID, ‘custom-field-name’, true); ?> <?php endif; ?>