Table Field Add-on for ACF and SCF
by Johann Heyne 4.9 (59 reviews)

Table Field Add-on for ACF and SCF

A Table Field Add-on for the Advanced Custom Fields and Secure Custom Fields Plugin.

Table Field Add-on for ACF and SCF ranks #700 among WordPress.org plugins with 50,000+ active installations, is #109 of 4,949 in the Utilities & Tools category, a 4.9/5 rating from 59 reviews, and was last updated Sep 14, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Compatible with WP 7.1.0
v1.4.0 Current Version v1.4.0
Updated 4 days ago Last Update on 14 Sep, 2026
Refreshed 7 hours ago Last Refreshed on
#109 of 4,949 in Utilities & Tools Top 1% by installs Downloads -32.7% this week Actively maintained
View on WordPress.org
Rank
#700
No change
Active Installs
50K+
-15.5%
KW Avg Position
13.4
No change
Downloads
1.2M
+461 today
Support Resolved
0%
No change
Rating
98%
Review 4.9 out of 5
4.9 (59 reviews)

Next Milestone 60K

Total Progress 90.9%
50K+ 60K+
9
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 910 more installs to reach 60K+

Rank Changes

665 683 701 718 736 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
665 683 701 719 737 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
Current #700
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 200 400 600 800 1K 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
0 200 400 600 800 1K 1.2K 03-09-2026 04-09-2026 05-09-2026 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

4.9
59 reviews
Overall 98%
5
55 (93%)
4
3 (5%)
3
0 (0%)
2
0 (0%)
1
1 (2%)

Support Threads Overview

Resolved
Unresolved
1
Total Threads
0
Resolved
1
Unresolved
0%
Resolution Rate

Security History

Source: WPVulnerability

3 known vulnerabilities on record · 1 in the last 24 months · checked 1 week ago

  1. Table Field Add-on for ACF and SCF [advanced-custom-fields-table-field] < 1.3.31

    CVE-2025-12067 · Fixed in v1.3.31

  2. Table Field Add-on for ACF and SCF [advanced-custom-fields-table-field] < 1.1.13

    Fixed in v1.1.13

  3. Table Field Add-on for ACF and SCF [advanced-custom-fields-table-field] < 1.1.13

    Fixed in v1.1.13

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress developers and site builders using Advanced Custom Fields or Secure Custom Fields. It adds an editable table field type, including support for ACF's repeater, flexible content, and Gutenberg blocks.

  • Editable table field type
  • Optional table header
  • Optional table caption
  • Support for ACF Gutenberg blocks
  • Add and remove rows/columns
  • Drag to reorder rows/columns
  • Works with ACF repeater field
  • Works with flexible content field

Frequently Asked Questions

Common questions about Table Field Add-on for ACF and SCF

To render the table fields data as an html table in one of your template files (page.php, single.php) you can start with the following basic code example: $table = get_field( 'your_table_field_name' ); if ( ! empty ( $table ) ) { echo '<table>'; if ( ! empty( $table['caption'] ) ) { echo '<caption>' . $table['caption'] . '</caption>'; } if ( ! empty( $table['header'] ) ) { echo '<thead>'; echo '<tr>'; foreach ( $table['header'] as $th ) { echo '<th>'; echo $th['c']; echo '</th>'; } echo '</tr>'; echo '</thead>'; } echo '<tbody>'; foreach ( $table['body'] as $tr ) { echo '<tr>'; foreach ( $tr as $td ) { echo '<td>'; echo $td['c']; echo '</td>'; } echo '</tr>'; } echo '</tbody>'; echo '</table>'; }
If the table has only one empty cell, then get_field() returns FALSE. get_field() returns NULL when a field is not stored in the database. That happens when a page is copied but not their fields content. You can check both with empty()… $table = get_field( 'your_table_field_name' ); if ( ! empty( $table ) ) { // $table is not FALSE and not NULL. // Field exists in database and has content. }
This is about displaying line breaks in the admin tables and getting line breaks as <br> when outputting the tables HTML. Converting Line Breaks for HTML Output To convert line breaks to <br> in tables HTML output the PHP function nl2br() can be used: For line breaks in table header cells replace… echo $th['c']; with… echo nl2br( $th['c'] ); For line breaks in table body cells replace… echo $td['c']; with… echo nl2br( $td['c'] ); Displaying Line Breaks in Editing Tables To display natural line breaks in the editing tables in the admin area, add the following styles to the admin area. .acf-table-header-cont, .acf-table-body-cont { white-space: pre-line; } One way to add these styles to the WordPress admin area is adding the following code to your functions.php file of the theme. add_action('admin_head', 'acf_table_styles'); function acf_table_styles() { echo '<style> .acf-table-header-cont, .acf-table-body-cont { white-space: pre-line; } </style>'; }
In general, its up to the page builder plugins to support ACF field types. But because the table field is not a native ACF field, the support for this field may never happen in page builders. For now the way to go is using a shortcode. Elementor provides for example a shortcode widget. Before you can use a shortcode to display a table fields table, you have to setup a shortcode in functions.php. The following code does this. You can modify the table html output for your needs. function shortcode_acf_tablefield( $atts ) { $param = shortcode_atts( array( 'field-name' => false, 'subfield-name' => false, 'post-id' => false, 'table-class' => '', ), $atts ); $class = new class( $param ) { public $atts; public $field_names; public $field_data = ''; public $html = ''; public function __construct( $atts ) { if ( is_string( $atts['subfield-name'] ) ) { $atts['field-name'] = $atts['subfield-name']; } if ( ! is_string( $atts['field-name'] ) ) { return ''; } $this->atts = $atts; $this->field_names = explode( '/', $this->atts['field-name'] ); $this->subfield( 0 ); } private function may_get_table_html( $data ) { if ( isset( $data['body'] ) ) { $return = '<table class="' . $this->atts['table-class'] . '">'; if ( ! empty( $data['caption'] ) ) { echo '<caption>' . $data['caption'] . '</caption>'; } if ( $data['header'] ) { $return .= '<thead>'; $return .= '<tr>'; foreach ( $data['header'] as $th ) { $return .= '<th>'; $return .= $th['c']; $return .= '</th>'; } $return .= '</tr>'; $return .= '</thead>'; } $return .= '<tbody>'; foreach ( $data['body'] as $tr ) { $return .= '<tr>'; foreach ( $tr as $td ) { $return .= '<td>'; $return .= $td['c']; $return .= '</td>'; } $return .= '</tr>'; } $return .= '</tbody>'; $return .= '</table>'; $this->html .= $return; } } private function subfield( $level = 0, $data = null ) { if ( isset( $data['body'] ) ) { $this->may_get_table_html( $data ); return; } else if ( ! isset( $this->field_names[ $level ] ) ) { return; } else if ( $data === null ) { if ( $this->atts['subfield-name'] === false ) { $data = get_field( $this->field_names[0], $this->atts['post-id'] ); } else { $data = get_sub_field( $this->field_names[0] ); } } else if ( isset( $data[ $this->field_names[ $level ] ] ) ) { $data = $data[ $this->field_names[ $level ] ]; } // repeater/group field if (
! isset( $data[0]['acf_fc_layout'] ) ) { if ( is_numeric( $this->field_names[ $level + 1 ] ) ) { if ( isset( $data[ $this->field_names[ $level + 1 ] ] ) ) { $this->subfield( $level + 1, $data[ $this->field_names[ $level + 1 ] ] ); } } else { foreach( $data as $key => $item ) { $this->subfield( $level + 1, $item ); } } } // flexible content field else if (
) { foreach( $data as $key => $item ) { if ( $item['acf_fc_layout'] === $this->field_names[ $level + 1 ] &&
) { $this->subfield( $level + 2, $item[ $this->field_names[ $level + 2 ] ] ); } } } // table field else { $this->subfield( $level + 1, $data ); } } }; return $class->html; } add_shortcode( 'tablefield', 'shortcode_acf_tablefield' ); Then use the shortcode with the corresponding shortcode options of the Page Builder. Getting a table field from the current page or post… [tablefield field-name="table_field_name"] Getting a table field from a group field… [tablefield field-name="group_field_name/table_field_name"] Getting a table field from a repeater field… [tablefield field-name="repeater_field_name/table_field_name"] Getting a table field from a specific repeater field item… [tablefield field-name="repeater_field_name/item_index/table_field_name"] Getting a table field from a flexible content field… [tablefield field-name="flexible_content_field_name/layout_name/table_field_name"] You can also get a table field from any kind of nested fields like in this example, where the table field is part of a layout of an flexible content field, that is a subfield of a repeater field, that is a subfield of a group field… [tablefield field-name="group_field_name/repeater_field_name/flexible_content_field_name/layout_name/table_field_name"] Getting a table field from inside a group, repeater or flexible content field loop… [tablefield subfield-name="table_field_name"] Getting a table field from another page or post… [tablefield field-name="table_field_name" post-id="123"] Getting a table field from a ACF option page… [tablefield field-name="table_field_name" post-id="option"] Adding a CSS class to the table HTML element… [tablefield field-name="table_field_name" table-class="my-table-style"] Updating a table using update_field() You can use the ACF PHP function update_field() to change a tables data. Notice Make sure that the number of entries in the header array matches the number of cells in the body rows. The array key 'c' stands for the content of the cells to have the option of adding other cell setting in future development. The table data obtained by get_field() are formatted and differ by the original database data obtained by get_post_meta(). Example of changing table data using get_field() and update_field() // the post ID where to update the table field $post_id = 123; $table_data = get_field( 'my_table', $post_id ); $table_data = array( 'use_header' => true, // boolean true/false 'caption' => 'My Caption', 'header' => array( 0 => array( 'c' => 'A', ), 1 => array( 'c' => 'B', ), ), 'body' => array( 0 => array( 0 => array( 'c' => 'The content of first cell of first row', ), 1 => array( 'c' => 'The content of second cell of first row', ), ), 1 => array( 0 => array( 'c' => The content of first cell of second row', ), 1 => array( 'c' => 'The content of second cell of second row', ), ), ) ); update_field( 'my_table', $table_data, $post_id ); Example of adding a new row // the post ID where to update the table field $post_id = 123; // gets the table data $table_data = get_field( 'my_table', $post_id ); // defines the new row and its columns $new_row = array( // must define the same amount of columns as exists in the table // column 1 array( // the 'c' stands for content of the cell 'c' => 'Cell Content of Column 1', ), // column 2 array( 'c' => 'Cell Content of Column 2', ) ); // adds the new row to the table body data array_push( $table_data['body'], $new_row ); // saves the new table data update_field( 'my_table', $table_data, $post_id ); Third party plugins issues Since version 1.3.1 of the table plugin, the storing format of the table data changes from JSON string to serialized array for new or updated tables. The issue with JSON is because of third party plugins that do not properly applying wp_slash() to a post_meta value before updating with update_post_metadata(). This can break JSON strings because update_post_metadata() removes backslashes by default. Backslashes are part of the JSON string syntax escaping quotation marks in content. The table field plugin prevents broken JSON strings to save as a table field data and throws an error message that explains the issue. But this may also breaks the functionality of the third party plugin trying to update the table data. You could disable the JSON string check in the table field plugin using the following code in the wp-config.php file. But then the table JSON data are no longer protected from destroing by update_post_metadata(). Use the following code in wp-config.php only, if you understand the risk… define( "ACF_TABLEFIELD_FILTER_POSTMETA", false ); UI Sanitizing Options Since version 1.3.33, you can configure the UI sanitizing options. This requires a script to be enqueued as an ACF admin script. You can enqueue it in your theme’s functions.php file using the following action. add_action( 'acf/input/admin_enqueue_scripts', function() { wp_enqueue_script( 'table-field-config', // Table field config script handle get_template_directory_uri() . '/js/table-field-config.js', // Path to the script in the theme ); }); The sanitization of the table fields UI is handled by DOMPurify. Use the following table field hook in your table field config script to modify the DOMPurify options.
ACFTableField.addFilter( 'core', 'sanitize_html', function( options ) { // DOMPurify Options, @see: https://github.com/cure53/DOMPurify?tab=readme-ov-file#can-i-configure-dompurify return options; }); });

Sign In / Register

You need to sign in or register to use this feature.