Esempio n. 1
0
if (get_field('dyk_content')) {
    ?>
						
				<p>
					<?php 
    the_field('dyk_content');
    ?>
				</p>
				
			<?php 
} else {
    ?>
			
				<p>
					<?php 
    echo incnow_get_page_option('page_dyk_content');
    ?>
					<a href="/why-incorporate-in-delaware/">Learn More</a>
				</p> 
				
			<?php 
}
?>
			
		</div>
		<div class="five columns">
			<img src="<?php 
echo get_stylesheet_directory_uri();
?>
/assets/images/dyk-question.png">
			<a href="#popup-entity-name" class="trigger-popup-entity-name">Check Entity Name</a>
Esempio n. 2
0
 * The template used for displaying did you know content
 */
?>

	<div class="did-you-know row">
		<div class="seven columns">
			<h5>Did You Know?</h5>
			
			<?php 
/*
 * First, check for custom content added to this particular page. If none, grab the default.
 */
if (get_field('dyk_content')) {
    echo '<p>' . the_field('dyk_content') . '</p>';
} else {
    echo '<p>' . incnow_get_page_option('page_dyk_content') . '</p>';
}
?>
			
		</div>
		<div class="five columns">
			<img src="<?php 
echo get_stylesheet_directory_uri();
?>
/assets/images/dyk-question.png">
			
			<?php 
/*
 * First, check for custom links added to this particular page. If none, grab the default.
 */
if (get_field('dyk_links')) {