HEADER_IMAGE_WIDTH,
'height' => HEADER_IMAGE_HEIGHT,
));
add_theme_support('custom-background');
add_theme_support('html5');
register_sidebar(array(
'name' => 'Widgets',
'description' => 'Widgets in this area will be shown on the right-hand side.',
'before_title' => '
',
'after_title' => '
',
'before_widget' => '',
'after_widget' => '
'
));
register_nav_menu('main', __('Main navigation menu', 'bigcity'));
function bigcity_add_editor_styles() {
add_editor_style('editor-style.css');
}
add_action('init', 'bigcity_add_editor_styles');
function bigcity_remove_width_attribute( $html ) {
$html = preg_replace( '/(width|height)="\d*"\s/', "", $html );
return $html;
}
add_filter( 'post_thumbnail_html', 'bigcity_remove_width_attribute', 10 );
add_filter( 'image_send_to_editor', 'bigcity_remove_width_attribute', 10 );