Created
June 26, 2013 20:34
-
-
Save zirosas/5871386 to your computer and use it in GitHub Desktop.
WordPress theme_support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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