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
layout-settings.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Settings: Layout Settings |
| 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::rtTPGLayoutSettingFields() ), true ); |
| 17 | echo '<div class="rd-responsive-column">'; |
| 18 | Fns::print_html( Fns::rtFieldGenerator( Options::responsiveSettingsColumn() ), true ); |
| 19 | echo '</div>'; |
| 20 | Fns::print_html( Fns::rtFieldGenerator( Options::layoutMiscSettings() ), true ); |
| 21 |