RSS Footer

‘ . __(‘Settings’) . ”; array_unshift( $links, $settings_link ); // before other links } return $links; } function config_page() { if ( isset($_POST['submit']) ) { if (!current_user_can(‘manage_options’)) die(__(‘You cannot edit the RSS Footer options.’)); check_admin_referer(‘rssfooter-config’); if (isset($_POST['footerstring']) && $_POST['footerstring'] != “”) $options['footerstring'] = $_POST['footerstring']; if (isset($_POST['position']) && $_POST['position'] != “”) $options['position'] = $_POST['position']; if (isset($_POST['postlink'])) { $options['postlink'] = true; } else { $options['postlink'] = false; } $options['everset'] = true; update_option(‘RSSFooterOptions’, $options); } $options = get_option(‘RSSFooterOptions’); ?>