Skip to content

Instantly share code, notes, and snippets.

@atinder
Created September 28, 2013 03:55
Show Gist options
  • Save atinder/6738199 to your computer and use it in GitHub Desktop.
Save atinder/6738199 to your computer and use it in GitHub Desktop.
add this before
<!--.social-media-->
<?php if($at_options['pinterest'] != '') {?><li class="tt" data-toggle="tooltip" data-container="body" data-placement="left" title="<?php _e('Find us on Pinterest','at'); ?>"><a href="<?php echo $at_options['pinterest']; ?>" class="icon-pinterest"></a></li><?php } ?>
and in inc/theme-options.php
add this
$settings[] = array(
'id' => 'pinterest',
'title' => __('Pinterest link','at'),
'type' => 'text',
'std' => '#'
);
above of
$settings[] = array(
'id' => 'contact',
'title' => __('Contact Settings','at'),
'type' => 'heading'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment