Adds custom logo support to wordpress theme
<?php function wp_custom_logo(){ add_image_size('theme-logo', '160', '90'); add_theme_support('custom-logo', array( 'size' => 'theme-logo' )); } add_action('after_setup_theme', 'wp_custom_logo'); ?>