【WordPress】去除小工具上的 WordPress.org 版权

去除WordPress的小工具上的 WordPress.org 版权 直接看图,找到,class-wp-wid…

去除WordPress的小工具上的 WordPress.org 版权

去除小工具上的 WordPress.org 版权

直接看图,找到,class-wp-widget-meta.php大约60到75行,红框里的删掉即可

<?php
    /**
     * Filter the "Powered by WordPress" text in the Meta widget.
     * @since 3.6.0
     * @param string $title_text Default title text for the WordPress.org link.
     */
    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' )
    ) );

    wp_meta();
?>

去除小工具上的 WordPress.org 版权

类别:WordPress经验

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT