Changeset 41685 for trunk/src/wp-includes/widgets/class-wp-widget-meta.php
- Timestamp:
- 10/02/2017 10:01:19 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-meta.php
r41162 r41685 61 61 * 62 62 * @since 3.6.0 63 * @since 4.9.0 Added the `$instance` parameter. 63 64 * 64 65 * @param string $title_text Default title text for the WordPress.org link. 66 * @param array $instance Array of settings for the current widget. 65 67 */ 66 68 echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>', … … 68 70 esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ), 69 71 _x( 'WordPress.org', 'meta widget link text' ) 70 ) );72 ), $instance ); 71 73 72 74 wp_meta();
Note: See TracChangeset
for help on using the changeset viewer.