wp 管理画面のテンプレートでJqueryを使う

<script>
jQuery(document).ready(function(){
	jQuery('#hoge').click(function(){
		alert('hoge');
	});
});
</script>
PAGE TOP