Title: Simple Table Manager
Author: ryo0inoue
Published: <strong>2015년 3월 3일</strong>
Last modified: 2025년 1월 19일

---

플러그인 검색

![](https://ps.w.org/simple-table-manager/assets/banner-772x250.png?rev=1134129)

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

![](https://ps.w.org/simple-table-manager/assets/icon-128x128.png?rev=1133727)

# Simple Table Manager

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

[다운로드](https://downloads.wordpress.org/plugin/simple-table-manager.1.6.1.zip)

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

 [지원](https://wordpress.org/support/plugin/simple-table-manager/)

## 설명

Simple Table Manager enables editing table records and exporting them to CSV files
through a minimal database interface from your dashboard.

 * Simply CRUD table contents on your wp-admin screen
 * Search and sort table records
 * No knowledge of MySQL or PHP required
 * Export table records to a CSV file
 * Does not allow users to create tables or change the structure of the table

Simple Table Manager is a tool suited for the initial development phase of a website.
It is ideal when you want to ask someone else with no database expertise to keep
track of table records on your website. This was the motivation for developing this
plugin.

Note that to comply with wordpress.org plugin security guidelines, edited and added
record fields are filtered through wp_kses_post() to prevent sql injection attacks.
In some cases, wanted tags may be filtered out leading to field corruption.

## 스크린샷

 * [[
 * List records
 * [[
 * Edit record
 * [[
 * Add record
 * [[
 * Settings
 * [[
 * [[

## 설치

 1. Via the Dashboard > Plugins > Add plugin menu page.
 2. Or upload the entire ‘simple-table-manager’ folder to the ‘/wp-content/plugins/’
    directory.
 3. Activate the plugin through the ‘Plugins’ menu in WordPress.
 4. On the plugin’s ‘Settings’ page, select the table you want to view and manage.

Filter call examples for developer use:

// change a value

    ```
    add_filter( 'tstm_list_field', 'custom_list_field_value', 10, 4 );
    function custom_list_field_value( $field_value, $current_table, $column_name, $key_value ) {
      if( 'wppb_options' == $current_table ) {
        if( 'option_value' == $column_name ) {
          if( 7 == $key_value ) {
            if( $field_value ) {
              $field_value = "true";
            } else {
              $field_value = "false";
            }
          }
        }
      }
      return $field_value;
    }
    ```

// change the default text input for radios

    ```
    add_filter( 'tstm_add_field_html', 'custom_field_html', 10, 4 );
    add_filter( 'tstm_edit_field_html', 'custom_field_html', 10, 4 );
    function custom_field_html( $field_html, $current_table, $column_name, $field_value, $key_value = true  ) {
      if( 'wppb_options' == $current_table ) {
        if( 'option_value' == $column_name ) {
          $column_name = urlencode( $column_name );
          if( $field_value ) {
            $field_html = '<input type="radio" name="'.$column_name.'" value="1" checked> Yes<br>';
            $field_html .= '<input type="radio" name="'.$column_name.'" value="0"> No';
          } else {
            $field_html = '<input type="radio" name="'.$column_name.'" value="1"> Yes<br>';
            $field_html .= '<input type="radio" name="'.$column_name.'" value="0" checked> No';      
          }
        }
      }
      return $field_html;
    }
    ```

// change the default text input for a checkbox

    ```
    add_filter( 'tstm_add_field_html', 'custom_field_html', 10, 5 );
    add_filter( 'tstm_edit_field_html', 'custom_field_html', 10, 5 );
    function custom_field_html( $field_html, $current_table, $column_name, $field_value, $key_value = true ) {
      if( 'wppb_options' == $current_table ) {
        if( 'option_value' == $column_name ) {
          if( 7 == $key_value ) {
            $checked = $field_value ? 'checked' : '';
            $field_html = '<input type="hidden" name="'.$column_name.'" value="0">'.PHP_EOL;
            $field_html .= '<input type="checkbox" name="'.$column_name.'" value="1" '.$checked.'>'.PHP_EOL;
          }
        }
      }
      return $field_html;
    }
    ```

## FAQ

### How can I add a new table or field by using the plugin?

You can’t. Use ‘full featured’ plugins or phpMyAdmin if you need full access to 
the database.

## 후기

![](https://secure.gravatar.com/avatar/66a8a47f602abde4abcce9823ae8bce20ba199511fc987cd77f4b707a0cf1f71?
s=60&d=retro&r=g)

### 󠀁[Does exactly what it says!](https://wordpress.org/support/topic/does-exactly-what-it-says-245/)󠁿

 [johnsalomon](https://profiles.wordpress.org/johnsalomon/) 2023년 3월 22일

Easy and lightweight. Nice!

![](https://secure.gravatar.com/avatar/f648e440340f94fb6b5b6b1156e46e76f21ac6fbd8a0d1134cdd180b77c84b01?
s=60&d=retro&r=g)

### 󠀁[Great!!!](https://wordpress.org/support/topic/great-13888/)󠁿

 [moderworks](https://profiles.wordpress.org/moderworks/) 2021년 10월 24일

All I can say

![](https://secure.gravatar.com/avatar/da5b5dc8cba07487d05354a9c155364f6676728cdf26924ea85fe5e693605482?
s=60&d=retro&r=g)

### 󠀁[Great for non-techy admin to maintain data.](https://wordpress.org/support/topic/great-for-non-techy-admin-to-maintain-data/)󠁿

 [Peter Lawrenson](https://profiles.wordpress.org/lorro/) 2016년 9월 3일

As advertised, this plugin is great for a non-techy admin to create and edit data,
and I recommended the plugin for this purpose. I used phpMyAdmin to setup the table
and then used the plugin to create the initial set of records. There are no display
facilities with the plugin so I a used a bit of custom code. Only 2 lines are needed
to fetch the data into a php function: global $wpdb; $results = $wpdb->get_results('
SELECT * FROM wp_mytable', ARRAY_N ); The plugin will allow access to only one table
at a time, but its easy to switch between tables. Thanks for sharing.

![](https://secure.gravatar.com/avatar/a11cfa63cfb88a7d917fb776718dc5e3e58673d9b9d49dc0372d928260e76d8c?
s=60&d=retro&r=g)

### 󠀁[pick calender on form](https://wordpress.org/support/topic/pick-calender-on-form/)󠁿

 [rizkykiki](https://profiles.wordpress.org/rizkykiki/) 2016년 9월 3일

I wish type date can pick calender on form

 [ 모든 4 평가 읽기 ](https://wordpress.org/support/plugin/simple-table-manager/reviews/)

## 기여자 & 개발자

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

기여자

 *   [ ryo0inoue ](https://profiles.wordpress.org/ryo0inoue/)
 *   [ Peter Lawrenson ](https://profiles.wordpress.org/lorro/)

[자국어로 “Simple Table Manager”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/simple-table-manager)

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

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

## 변경이력

#### 1.6.1 (2025-01-14)

 * Changes to meet wordpress.org plugin security guidelines
 * Checked to work with WordPress 6.7

#### 1.6.0 (2023-11-26)

 * Enhanced security and other changes to comply with wordpress.org plugin guidelines.
 * Checked to work with WordPress 6.4

#### 1.5.6 (2023-07-23)

 * WHERE clause construction refactored
 * Checked to work with WordPress 6.2

#### Version 1.5.5 (2022-01-20)

 * Function “stm_load_textdomain” renamed to remove conflict with course-editor 
   plugin.

#### Version 1.5.4 (2021-10-24)

 * New feature: Option in the settings tab to restrict plugin access to administrators(
   Defaults to “Authors” and better capabilities)

#### Version 1.5.3 (2021-10-19)

 * Tested with WP 5.8
 * Translation file updated

#### Version 1.5.2 (2021-03-15)

 * Added a setting to pretty print any unserialized arrays on the Edit tab
 * Added a filter example to show how to setup a checkbox input with the plugin
 * Tested with WP v5.7 & PHP v8.0.2

#### Version 1.5.1 (2021-03-04)

 * Version 1.5.0 upload was corrupted. Re-uploaded.

#### Version 1.5.0 (2021-03-04)

 * Changes by: lorro
 * New feature – User can select a sub-set of fields to show. Enables wide tables
   to fit the screen.
 * New feature – Filters for List table field display and for Edit and Add field
   html. See Installation section for use.
 * Redesigned interface
 * Tested with WordPress 5.6.2
 * Updated readme.txt

#### Version 1.4 (2020-09-07)

 * Changes by: lorro
 * Fixed errors if column names have spaces.
 * Date fields have a date picker in the Edit and Add screens.
 * Time fields have a time picker in the Edit and Add screens.
 * Works if the primary column is not the first column
 * Edit and Add screens show data types.
 * Minor styling improvements.
 * Tested with WordPress 5.5.1
 * Updated readme.txt

#### Version 1.3 (2019-08-20)

 * Changes by: lorro
 * Fix error on activation if database prefix is not “wp_”
 * Fix CSV Export.
 * Fix $order not found error.
 * Make all strings translation-ready.
 * Cosmetic changes

#### Version 1.2 (2016-01-15)

 * Author: Ryo Inoue
 * Enabled handling of non-integer primary keys.

#### Version 1.1 (2015-05-02)

 * Author: Ryo Inoue
 * Added feature to auto-adjust input text fields according to data type.
 * Enabled insert and retrieval of data containing special chars.
 * Rearranged files for a loosely MVC structure.
 * Fixed a few minor bugs.

#### Version 1.0 (2015-03-03)

 * Author: Ryo Inoue
 * First release

## 기초

 *  버전 **1.6.1**
 *  최근 업데이트: **1년 전**
 *  활성화된 설치 **400+**
 *  워드프레스 버전 ** 6.2 또는 그 이상 **
 *  다음까지 시험됨: **6.7.5**
 *  PHP 버전 ** 7.3 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/simple-table-manager/)
 * 태그:
 * [crud](https://ko.wordpress.org/plugins/tags/crud/)[database](https://ko.wordpress.org/plugins/tags/database/)
   [export](https://ko.wordpress.org/plugins/tags/export/)[mysql](https://ko.wordpress.org/plugins/tags/mysql/)
   [table](https://ko.wordpress.org/plugins/tags/table/)
 *  [고급 보기](https://ko.wordpress.org/plugins/simple-table-manager/advanced/)

## 평점

 별 5점 만점에 4.8점.

 *  [  3/5-별점 후기     ](https://wordpress.org/support/plugin/simple-table-manager/reviews/?filter=5)
 *  [  1/4-별점 후기     ](https://wordpress.org/support/plugin/simple-table-manager/reviews/?filter=4)
 *  [  0/3-별점 후기     ](https://wordpress.org/support/plugin/simple-table-manager/reviews/?filter=3)
 *  [  0/2-별점 후기     ](https://wordpress.org/support/plugin/simple-table-manager/reviews/?filter=2)
 *  [  0/1-별점 후기     ](https://wordpress.org/support/plugin/simple-table-manager/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/simple-table-manager/reviews/#new-post)

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

## 기여자

 *   [ ryo0inoue ](https://profiles.wordpress.org/ryo0inoue/)
 *   [ Peter Lawrenson ](https://profiles.wordpress.org/lorro/)

## 지원

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

 [지원 포럼 보기](https://wordpress.org/support/plugin/simple-table-manager/)