'1,2,7,8', 'post_types' => array( 'post', 'page'), 'save_type' => 'user', 'opt_version' => 1 ); $opt_name = 'ino_starred_common'; //check to see if present already if( !get_option( $opt_name ) ) { //option not found, add new add_option($opt_name, $default_opt ); } } function ino_stars_init() { if(is_admin()){ $plugin = new Ino_Starred_Posts(); $plugin->run(); $settings_page = new Ino_Starred_Settings(); $settings_page->run(); } register_activation_hook( __FILE__, 'ino_stars_install' ); } //start the magic ino_stars_init();