Table property for Papi.
This property requires Papi plugin.
If you're using Composer to manage WordPress, add Papi to your project's dependencies. Run:
composer require frozzare/papi-property-table
<?php
$fields = [
['Name', 'facility_name'],
['ID', 'facility_id'],
['Location', 'facility_location_name'],
['E-email', 'facility_email'],
['Address', 'facility_street_address'],
['Zip code', 'facility_zip_code']
];
foreach ( $fields as $k => $v ) {
$fields[$k][1] = get_post_meta( $_GET['post'], $v[1], true );
}
$this->box( [
'title' => 'Facility information',
'context' => 'side'
], [
papi_property( [
'sidebar' => false,
'title' => 'Facility information',
'type' => 'table',
'settings' => [
'items' => $fields
]
] )
] );
MIT © Fredrik Forsmo