概要
メタ情報の最下段にある WordPress.org のリンクを消したい
対応
class-wp-widget-meta.php ファイルを変更する
該当するのは以下のファイル
\wordpress\wp-includes\widgets\class-wp-widget-meta.php
その中の以下の行をそっくり削除
<?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 のバージョンアップをすると元に戻ります。再びPHPファイルの変更をする必要があります。
コメント