NewFormTemplates.html.php 514 B

12345678910111213
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. $templates = Ninja_Forms::config( 'NewFormTemplates' );
  3. foreach( $templates as $template ) {
  4. ?>
  5. <a href="?page=ninja-forms&form_id=<?php echo $template[ 'id' ]; ?>" class="nf-one-third template-box">
  6. <div class="template-box-inside">
  7. <h4><?php echo $template[ 'title' ]; ?></h4>
  8. <p class="template-desc"><?php echo $template[ 'template-desc' ]; ?></p>
  9. </div>
  10. </a>
  11. <?php
  12. }