'; $style = get_option( 'aib_widget_style' ); if ( $style == 'float' ) { echo '
'; } } function aib_per_post($content) { echo $content; echo '
'; } add_action('wp_footer', 'aib_footer'); $style = get_option( 'aib_widget_style' ); if ( $style != 'float' ) add_action('the_content', 'aib_per_post'); /*****************************************/ /************ ADMIN MENU *****************/ /*****************************************/ add_action( 'admin_menu', 'my_plugin_menu' ); /** Step 1. */ function my_plugin_menu() { add_options_page( 'Additback Options', 'Additback', 'manage_options', 'aib-settings', 'my_plugin_options' ); } /** Step 3. */ function my_plugin_options() { if ( !current_user_can( 'manage_options' ) ) { wp_die( __( 'You do not have sufficient permissions to access this page.' ) ); } if ( isset($_POST['style']) ){ update_option( 'aib_widget_style', $_POST['style'] ); } $style = get_option( 'aib_widget_style' ); echo '
'; echo '
'; echo '

Additback Options

'; echo '

Please choose the Widget style.

'; echo '
'; echo ''; echo '
'; echo '
'; if ( isset($_POST['style']) ){ echo '

Settings updated.

'; } } ?>