Changeset 20934 for trunk/wp-includes/theme.php
- Timestamp:
- 05/26/2012 03:32:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/theme.php
r20918 r20934 1616 1616 * 1617 1617 * @since 3.4.0 1618 */ 1619 function wp_customize_url( $stylesheet ) { 1620 return esc_url( admin_url( 'customize.php' ) . '?theme=' . $stylesheet ); 1618 * 1619 * @param string $stylesheet Optional. Theme to customize. Defaults to current theme. 1620 */ 1621 function wp_customize_url( $stylesheet = null ) { 1622 $url = admin_url( 'customize.php' ); 1623 if ( $stylesheet ) 1624 $url .= '?theme=' . $stylesheet; 1625 return esc_url( $url ); 1621 1626 } 1622 1627
Note: See TracChangeset
for help on using the changeset viewer.