メニューページのスタイル

WordPress

functions.php

function menu_page_style() {
    echo '<style>
  		.answer_table h1 {
			font-size: 1.8em;
			font-weight: 400;
			padding: 10px 5px;
		}  
    </style>';
}
add_action('admin_head', 'menu_page_style');

BACK