admin_head

最后更新于:2021-11-25 19:41:14

do_action( ‘admin_head’ )

Fires in head section for all admin pages.

源文件

文件: gc-admin/admin-header.php

View on Trac

function dolly_css() {
	// This makes sure that the positioning is also good for right-to-left languages
	$x = is_rtl() ? 'left' : 'right';

	echo "
	<style type='text/css'>
	#dolly {
		float: $x;
		padding-$x: 15px;
		padding-top: 5px;
		margin: 0;
		font-size: 11px;
	}
	</style>
	";
}
add_action( 'admin_head', 'dolly_css' );