Title: Quick Questionnaire
Author: michielve
Published: <strong>2017년 4월 29일</strong>
Last modified: 2023년 11월 25일

---

플러그인 검색

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://s.w.org/plugins/geopattern-icon/quick-questionnaire.svg)

# Quick Questionnaire

 작성자: [michielve](https://profiles.wordpress.org/michielve/)

[다운로드](https://downloads.wordpress.org/plugin/quick-questionnaire.zip)

 * [세부사항](https://ko.wordpress.org/plugins/quick-questionnaire/#description)
 * [평가](https://ko.wordpress.org/plugins/quick-questionnaire/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/quick-questionnaire/#installation)
 * [개발](https://ko.wordpress.org/plugins/quick-questionnaire/#developers)

 [지원](https://wordpress.org/support/plugin/quick-questionnaire/)

## 설명

Create simple exercises directly in the editor by putting the possible answer(s)
in double brackets.
 A quick questionnaire must be an ordered or unordened list.

The following types of answers are possible:

**Enter the correct answer in a textbox:**

The correct answer has to be entered in a textbox.

    ```
    <ul>
      <li>The capital of France is ...? {text{ Paris }}</li>
    </ul>
    ```

You can also use a case insensitive textbox by using the `itext` property:

    ```
    <ul>
      <li>The capital of France is ...? {itext{ Paris }}</li>
    </ul>
    ```

**Enter the correct answer in a textbox – multiple answers possible:**

The correct answer has to be entered in a textbox.

    ```
    <ul>
      <li>The capital of France or Italy is ...? {text{ Paris | Rome }}</li>
    </ul>
    ```

**Enter the correct answer in a textbox – regular expression:**

If you have some regular expression skills, you can also specify this:

    ```
    <ul>
      <li>The capital of France or Rome is ...? {reg{ /^(Paris|Rome)$/ }}</li>
    </ul>
    ```

**Check the correct answer in radio buttons:**

All possible answers are divided by |, the correct answer has to be marked with 
a *.
 The answers are displayed as radio boxes.

    ```
    <ul>
      <li>The capital of France? {radio{ Paris* | London | Berlin }}</li>
    </ul>
    ```

**Check all possible answers in checkboxes:**

Mark alle correct answers with a *.
 The answers are displayed as checkboxes.

    ```
    <ul>
      <li>Countries of Europe? {checkbox{ France* | Netherlands* | Canada }}</li>
    </ul>
    ```

## 스크린샷

[⌊Single select radio boxes⌉⌊Single select radio boxes⌉[

Single select radio boxes

[⌊Multiple select checkboxes⌉⌊Multiple select checkboxes⌉[

Multiple select checkboxes

[⌊Text input boxes⌉⌊Text input boxes⌉[

Text input boxes

[⌊Edit the exercise in the editor is simple⌉⌊Edit the exercise in the editor is 
simple⌉[

Edit the exercise in the editor is simple

## 블록

이 플러그인은 1개의 블록을 제공합니다.

 *   Quick Questionnaire

## 설치

 1. Upload the plugin files to the `/wp-content/plugins/plugin-name` directory, or 
    install the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress
 3. Click on the new menu item “Quick Questionnaire” to create quick questionnaires

## FAQ

### How can I change the look of the exercise?

Just override the classes you see in the qq.css file.

### Change the options separator

By default the `|` is used to separate the radio and checkbox options, but you can
override this by Defining the `EASY_EXERCISE_SEPARATOR` constant in wp-config.php.

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“Quick Questionnaire”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에
기여하였습니다.

기여자

 *   [ michielve ](https://profiles.wordpress.org/michielve/)

[자국어로 “Quick Questionnaire”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/quick-questionnaire)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/quick-questionnaire/)
는, [SVN 저장소](https://plugins.svn.wordpress.org/quick-questionnaire/)를 확인하시거나,
[개발 기록](https://plugins.trac.wordpress.org/log/quick-questionnaire/)을 [RSS](https://plugins.trac.wordpress.org/log/quick-questionnaire/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 2.5

 * Fixed bug: not checking if varaible is array

#### 2.4

 * Add question with a modal window

#### 2.3

 * Only save the list content instead of the whole post content

#### 2.2

 * Added custom block instead of expanding existing list block

#### 2.0

 * Using Gutenberg blocks to enable quick questionnaire lists and show buttons
 * Renamed to quick questionnaire

#### 1.19

 * Override answer separator by defining the QQ_SEPARATOR constant
 * New `itext` option as a case insensitive textbox
 * Wrap question inside span
 * Removed jQuery dependency

#### 1.18

 * Renamed to Easy Exercise everywhere
 * Changed some CSS

#### 1.17

 * Fixed bug: check for empty global $post variable in run_wptexturize filter

#### 1.16

 * Adding correct answers to default rest API endpoint

#### 1.15

 * Possible to get correct answers of all lists from API

#### 1.14

 * Bug fixes

#### 1.13

 * Added API endpoints to get exercises, check answers and show good answers

#### 1.12

 * Wrap content inside DIV instead of BODY tag

#### 1.11

 * Flush rewrite rules after (de)activation
 * Unregister post type after deactivation

#### 1.10

 * Now working without using PHP sessions

#### 1.9

 * Escape value attribute for radio and checkboxes

#### 1.8

 * JSON stringify on client and json_decode with stripslahes on server – this makes
   apostrof work

#### 1.7

 * Translation update

#### 1.6

 * Changed name to Easy Exercise

#### 1.5

 * Correctly handling of UTF-8
 * Fix global wptexturize remove, now only for this post type

#### 1.4

 * Accented charachters
 * Prevent three dots rewrite to ellipisis by removing wptexturize from the the_content
   filter

#### 1.3

 * Localization

#### 1.2

 * Remove tags and category taxonomies (you can set them with register_taxonomy_for_object_type
   later)

#### 1.1

 * Explicitly set type to text, radio, checkbox or reg.

#### 1.0

 * First release.

## 기초

 *  버전 **2.5**
 *  최근 업데이트: **3년 전**
 *  활성화된 설치 **10+**
 *  워드프레스 버전 ** 3.0.1 또는 그 이상 **
 *  다음까지 시험됨: **6.4.10**
 *  언어
 * [English (US)](https://wordpress.org/plugins/quick-questionnaire/)
 * 태그:
 * [exercise](https://ko.wordpress.org/plugins/tags/exercise/)[practice](https://ko.wordpress.org/plugins/tags/practice/)
   [test](https://ko.wordpress.org/plugins/tags/test/)
 *  [고급 보기](https://ko.wordpress.org/plugins/quick-questionnaire/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/quick-questionnaire/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/quick-questionnaire/reviews/)

## 기여자

 *   [ michielve ](https://profiles.wordpress.org/michielve/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/quick-questionnaire/)