web/wp-content/themes/malleable/library/admin/theme-settings.php
author convert-repo
Mon, 22 Mar 2010 10:49:29 +0000
changeset 3 ba1be1ffaa11
parent 1 0d28b7c10758
permissions -rw-r--r--
update tags

<?php

// Include files
	include(MALLEABLE. '/library/admin/theme-settings-admin.php');

// Add actions
	add_action('admin_menu', 'malleable_add_pages');

/**
* Gets all theme admin menu pages
*
* @since 0.1
*/
function malleable_add_pages() {
	add_theme_page(__('Malleable Settings','hybrid'), __('Malleable','hybrid'), 10, 'malleable.php', malleable_theme_page);
}

?>