widget_meta_poweredby

widget_meta_poweredby

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-5.0.3

apply_filters('widget_meta_poweredby') is found 1 times:

  • /wp-includes/widgets/class-wp-widget-meta.php line 71
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    *
     * @param string $title_text Default title text for the WordPress.org link.
     * @param array  $instance   Array of settings for the current widget.
     */
    echo apply_filters( 'widget_meta_poweredby', sprintf( '<li><a href="%s" title="%s">%s</a></li>',
        esc_url( __( 'https://wordpress.org/' ) ),
        esc_attr__( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.' ),
        _x( 'WordPress.org', 'meta widget link text' )
    ), $instance );
     
    wp_meta();