Mohit127
10/11/2016 - 11:31 AM

Adds custom logo support to wordpress theme

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');
?>