item-fields.php
3 years ago
layout-settings.php
3 years ago
post-source.php
3 years ago
sc-settings.php
3 years ago
settings.php
3 years ago
style.php
3 years ago
item-fields.php
17 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Settings: Item Fields |
| 4 | * |
| 5 | * @package RT_TPG |
| 6 | */ |
| 7 | |
| 8 | use RT\ThePostGrid\Helpers\Fns; |
| 9 | use RT\ThePostGrid\Helpers\Options; |
| 10 | |
| 11 | // Do not allow directly accessing this file. |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit( 'This script cannot be accessed directly.' ); |
| 14 | } |
| 15 | |
| 16 | Fns::print_html( Fns::rtFieldGenerator( Options::itemFields() ), true ); |
| 17 |