> Footer Sitemap Options. Version: 1.4 Author: Sean Ham, Dynamis Consulting Author URI: http://consulting.dynamisart.com Disclaimer: Use at your own risk. No warranty expressed or implied is provided. */ /* Copyright 2008-2010 Dynamis (email : sean@dynamisart.com) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ $fsitemap_options = get_option('fsitemap'); add_action('admin_menu', 'fsitemap_admin_menu'); function fsitemap_admin_menu() { add_options_page('Footer Sitemap Options', 'Footer Sitemap Options', 'manage_options', 'footer-sitemap/options.php'); } add_action('wp_footer', 'sitemap_wp_footer'); function sitemap_wp_footer() { global $fsitemap_options; echo '
'; } add_action('wp_head', 'sitemap_wp_stylesheet'); function sitemap_wp_stylesheet() { echo ' '; } ?>