'Sidebar')); register_sidebar(array('name'=>'Footer A')); register_sidebar(array('name'=>'Footer B')); register_sidebar(array('name'=>'Footer C')); register_sidebar(array('name'=>'Footer D')); register_sidebar(array( 'name' => 'Submenu', 'id' => 'submenu', 'before_widget' => '', 'before_title' => false, 'after_title' => false )); // ends --- // pullquote shortcode function pullquote( $atts, $content = null ) { extract(shortcode_atts(array( 'float' => '$align', ), $atts)); return '
' . $content . '
'; } add_shortcode('pull', 'pullquote'); // ends --- // admin page add_action('admin_menu', 'nbcore_menu'); function nbcore_menu() { add_theme_page('Notes Blog ONE', 'Notes Blog ONE', 8, 'your-unique-identifier', 'nbcore_options'); } function nbcore_options() { echo '

Website Delux | Blog ONE Notes

'; echo '

This is a placeholder for upcoming admin options for the Blog ONE theme. These things aren\'t due yet, in fact, they are pretty far away, so just forget about this page for now huh?

Get the latest Notes Blog and Notes Blog Core news from http://websitedelux.com - it\'s that sweet!

'; echo '

Change Logo Image

To get a new logo image replace the image with an image of the same name "logo.png" inside the images folder of this theme.

'; echo '
'; } // ends --- // custom login form function nbcustom_login() { echo ''; } add_action('login_head', 'nbcustom_login'); // ends --- ?>