This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="single-post-wrap"> | |
<div class="container"> | |
<?php //start by fetching the terms for the dlm_download_category taxonomy | |
$terms = get_terms( 'dlm_download_category', array( | |
'orderby' => 'count', | |
'showposts' => '999', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- custom field --> | |
<?php $email = get_field('send_to_email');?> | |
<?php echo do_shortcode('[gravityforms id=1 title=false description=false field_values=get_email='.$email.']'); ?> | |
<!-- repeater --> | |
<?php $email = get_sub_field('send_to_email');?> | |
<?php echo do_shortcode('[gravityforms id=1 title=false description=false field_values=get_email='.$email.']'); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php get_header(); ?> | |
<!-- page content --> | |
<div class="pageWrap"> | |
<div class="title-banner"> | |
<div class="container"> | |
<div class="mobile-wrap-page"> |