options = get_option( 'cleanblack_options' ); ?>

Clean Black Theme Settings

Thank you for using Clean Black. You can send feedback via cwlk.org

', isset( $this->options['favicon'] ) ? esc_attr( $this->options['favicon']) : '' ); } /** * Show/Hide Post Thumbnail */ public function print_section_info2() { print 'Either select to show or hide post thumbnail.'; } public function postthumb_callback() { printf('
', ($this->options['postthumb'] )==1 ? 'checked="checked"' : '', ($this->options['postthumb'] )==0 ? 'checked="checked"' : '' ); } } if( is_admin() ) $my_settings_page = new ThemeOptionsPage();