item-fields.php
4 years ago
layout-settings.php
4 years ago
post-source.php
4 years ago
sc-settings.php
4 years ago
settings.php
4 years ago
style.php
4 years ago
style.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | use RT\ThePostGrid\Helpers\Fns; |
| 4 | use RT\ThePostGrid\Helpers\Options; |
| 5 | |
| 6 | echo Fns::rtFieldGenerator( Options::rtTPGStyleFields() ); ?> |
| 7 | |
| 8 | <div class="field-holder button-color-style-wrapper"> |
| 9 | <div class="field-label"><?php _e( 'Button Color', 'the-post-grid' ); ?></div> |
| 10 | <div class="field"> |
| 11 | <div class="tpg-multiple-field-group"> |
| 12 | <?php echo Fns::rtFieldGenerator( Options::rtTPGStyleButtonColorFields() ); ?> |
| 13 | </div> |
| 14 | </div> |
| 15 | </div> |
| 16 | |
| 17 | <div class="field-holder widget-heading-stle-wrapper"> |
| 18 | <div class="field-label"><?php _e( 'ShortCode Heading', 'the-post-grid' ); ?></div> |
| 19 | <div class="field"> |
| 20 | <div class="tpg-multiple-field-group"> |
| 21 | <?php echo Fns::rtFieldGenerator( Options::rtTPGStyleHeading() ); ?> |
| 22 | </div> |
| 23 | </div> |
| 24 | </div> |
| 25 | |
| 26 | <div class="field-holder full-area-style-wrapper"> |
| 27 | <div class="field-label"><?php _e( 'Full Area / Section', 'the-post-grid' ); ?></div> |
| 28 | <div class="field"> |
| 29 | <div class="tpg-multiple-field-group"> |
| 30 | <?php echo Fns::rtFieldGenerator( Options::rtTPGStyleFullArea() ); ?> |
| 31 | </div> |
| 32 | </div> |
| 33 | </div> |
| 34 | |
| 35 | <?php do_action( 'rt_tpg_sc_style_group_field' ); ?> |
| 36 | |
| 37 | <?php echo Fns::rtSmartStyle( Options::extraStyle() ); ?> |
| 38 | |
| 39 | |
| 40 |