Home / Admin / Add custom CSS in the Admin
Duplicate Snippet

Embed Snippet on Your Site

Add custom CSS in the Admin

Use this snippet to add custom styles in the WordPress admin head. Add your CSS code between the style tags.

<10
Code Preview
php
<?php
add_action( 'admin_head', function() {
?>
	<style>
		
	</style>
	<?php
} );

Comments

Add a Comment