Skip to content

Instantly share code, notes, and snippets.

@zirosas
Created June 26, 2013 20:34
Show Gist options
  • Save zirosas/5871386 to your computer and use it in GitHub Desktop.
Save zirosas/5871386 to your computer and use it in GitHub Desktop.
WordPress theme_support
add_theme_support('menus');
register_sidebar(
array(
'before_widget' => '<div class="widget">',
'after_widget' => '</div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
)
);
add_theme_support('post-thumbnails');
function shortcode_twitter() {
return '<a href="http://twitter.com/username">@username</a> - Follow me!';
}
add_shortcode('twitter', 'shortcode_twitter');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment