__( 'Title', 'woocommerce-jetpack' ), 'id' => 'title', 'default' => '', 'type' => 'text', 'class' => 'widefat', ), array( 'title' => __( 'Countries', 'woocommerce-jetpack' ), 'id' => 'countries', 'default' => '', 'type' => 'text', 'class' => 'widefat', ), array( 'title' => __( 'Replace with currency', 'woocommerce-jetpack' ), 'id' => 'replace_with_currency', 'default' => 'no', 'type' => 'select', 'class' => 'widefat', 'options' => array( 'no' => __( 'No', 'woocommerce-jetpack' ), 'yes' => __( 'Yes', 'woocommerce-jetpack' ), ), ), ); } } endif; if ( ! function_exists( 'register_wcj_widget_country_switcher' ) ) { /** * Register WCJ_Widget_Country_Switcher widget. */ function register_wcj_widget_country_switcher() { register_widget( 'WCJ_Widget_Country_Switcher' ); } } add_action( 'widgets_init', 'register_wcj_widget_country_switcher' );