[wp-trac] [WordPress Trac] #22182: Make core theme customizer section titles filterable
WordPress Trac
noreply at wordpress.org
Tue Dec 3 00:11:15 UTC 2013
#22182: Make core theme customizer section titles filterable
-----------------------------+------------------------------
Reporter: dgwyer | Owner:
Type: enhancement | Status: new
Priority: normal | Milestone: Awaiting Review
Component: Appearance | Version: 3.4.2
Severity: normal | Resolution:
Keywords: has-patch close |
-----------------------------+------------------------------
Changes (by obenland):
* keywords: has-patch => has-patch close
Comment:
IMO there really is no need for a filter here. This does it:
{{{
#!php
<?php
function prefix_customize_register( $wp_customize ) {
$wp_customize->get_section( 'colors' )->title = __( 'Not Colors.
Haha!', 'textdomain' );
}
add_action( 'customize_register', 'prefix_customize_register' );
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/22182#comment:9>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list