Skip to content

Instantly share code, notes, and snippets.

@clarklab
Created October 17, 2012 00:01
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clarklab/3902885 to your computer and use it in GitHub Desktop.
Save clarklab/3902885 to your computer and use it in GitHub Desktop.
get_theme_mod
<!-- in footer.php -->
<div class="footer-text"><?php echo get_theme_mod('footer_text') ?></div>
<!-- rendered HTML content -->
<div class="footer-text">&copy;2012 Site Name</div>
<!--in functions.php (to enable the field in the Theme Customizer) -->
<?php
$wp_customize->add_section( 'footer', array(
'title' => 'Footer',
'priority' => 105,
) );
$wp_customize->add_setting( 'footer_text', array(
'default' => '',
) );
$wp_customize->add_control( 'footer_text', array(
'label' => 'Footer Tagline',
'section' => 'footer',
'type' => 'text',
) );
@clarklab
Copy link
Author

I posted this as part of a support forum ticket on WP.org, but I figured someone else might find it useful. Enjoy!

@bryceadams
Copy link

Awesome - thanks for this Clark

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment