wordpress ウィジェットタイトル削除

-functions.php

add_filter('widget_title', 'no_widget_title');
function no_widget_title($title ) {
	return null;
}
PAGE TOP