<?php
add_action(admin_menu, nbcore_menu);

function nbcore_menu() {
	add_theme_page(Notes Blog Core, Notes Blog Core, 8, your-unique-identifi er, nbcore_options);
}
function nbcore_options() {
	echo <div class=wrap>;
	echo 
		<h2>Notes Blog Core</h2>
		<p>This is a placeholder for upcoming admin options for the Notes Blog Core theme. These things aren\t due yet, in fact, they are pretty far away, so just forget about this page for now huh?</p>
		<p>Get the latest Notes Blog and Notes Blog Core news from <a href=http://notesblog.com title=Notes Blog>http://notesblog.com</a> - it\s that sweet!</p>
	;
	echo </div>;
}
?>