You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
338 B
PHP
17 lines
338 B
PHP
<?php
|
|
/**
|
|
* Settings: Item Fields
|
|
*
|
|
* @package RT_TPG
|
|
*/
|
|
|
|
use RT\ThePostGrid\Helpers\Fns;
|
|
use RT\ThePostGrid\Helpers\Options;
|
|
|
|
// Do not allow directly accessing this file.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit( 'This script cannot be accessed directly.' );
|
|
}
|
|
|
|
Fns::print_html( Fns::rtFieldGenerator( Options::itemFields() ), true );
|