Skip to content
Permalink
396bfd4a62
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
38 lines (35 sloc) 1.15 KB
<?php
$wp_customize->get_section( 'title_tagline' )->title = 'Title Bar';
$wp_customize->remove_control('blogdescription');// removes tagline form field.
$wp_customize->get_control( 'blogname' )->description = 'Please use Title Case, not ALL CAPS, as defined in <a href-"http://brand.uconn.edu/standards/web/">UConn Web Brand Standards</a>. ';
$wp_customize->add_setting( 'parentSiteTitle',
array(
'type' => 'option',
'capability' => 'edit_theme_options',
'transport' => 'refresh'
)
);
$wp_customize->add_control('parentSiteTitle',
array(
'type' => 'text',
'priority' => '100',
'label' => 'Parent Site Title',
'section' => 'title_tagline'
)
);
$wp_customize->add_setting( 'parentSiteLink',
array(
'type' => 'option',
'capability' => 'edit_theme_options',
'transport' => 'refresh'
)
);
$wp_customize->add_control('parentSiteLink',
array(
'type' => 'text',
'priority' => '101',
'label' => 'Parent Site Link',
'section' => 'title_tagline'
)
);
?>