Advanced Custom Fields: Table Field
https://ja.wordpress.org/plugins/advanced-custom-fields-table-field/
このプラグインでしょうか。
それでしたら、プラグインのページに使用例が書かれているので試してみてはどうでしょう。
FAQ
How to output the table html?
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:
php
1$table = get_field( 'your_table_field_name' );
2if ( ! empty ( $table ) ) {
3 echo '<table border="0">';
4 if ( ! empty( $table['caption'] ) ) {
5 echo '<caption>' . $table['caption'] . '</caption>';
6 }
7 if ( ! empty( $table['header'] ) ) {
8 echo '<thead>';
9 echo '<tr>';
10 foreach ( $table['header'] as $th ) {
11 echo '<th>';
12 echo $th['c'];
13 echo '</th>';
14 }
15 echo '</tr>';
16 echo '</thead>';
17 }
18 echo '<tbody>';
19 foreach ( $table['body'] as $tr ) {
20 echo '<tr>';
21 foreach ( $tr as $td ) {
22 echo '<td>';
23 echo $td['c'];
24 echo '</td>';
25 }
26 echo '</tr>';
27 }
28 echo '</tbody>';
29 echo '</table>';
30}
参考まで。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/14 02:49