$chosen
"; } // Now we set that function up to execute when the admin_footer action is called add_action('bb_admin_footer', 'hello_louie'); // We need some CSS to position the paragraph function louie_css() { // This makes sure that the positioning is also good for right-to-left languages global $bb_locale; $x = ( isset( $bb_locale->text_direction ) && 'rtl' == $bb_locale->text_direction ) ? 'left' : 'right'; echo " "; } add_action('bb_admin_head', 'louie_css');