Skip to content

Instantly share code, notes, and snippets.

@eksana
Created July 26, 2016 16:05
Show Gist options
  • Save eksana/18e6930409c54d3b98bd9ca0a2b93d23 to your computer and use it in GitHub Desktop.
Save eksana/18e6930409c54d3b98bd9ca0a2b93d23 to your computer and use it in GitHub Desktop.
wp_funf_sampl_theme_opt
<h3>Адрес:</h3>
<p><?php
$options = get_option('sample_theme_options');
echo $options['addresstext']; ?></p>
</div>
<div class="contact_box">
<div class="contacts_icon icon-basic-smartphone"></div>
<h3>Телефон:</h3>
<p><?php
$options = get_option('sample_theme_options');
echo $options['phonetext']; ?></p>
</div>
<div class="contact_box">
<div class="contacts_icon icon-basic-webpage-img-txt"></div>
<h3>Веб-сайт:</h3>
<p><a href="//<?php
$options = get_option('sample_theme_options');
echo $options['sitetext']; ?>" target="_blank"><?php
$options = get_option('sample_theme_options');
echo $options['sitetext']; ?></a></p>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment