このブログでも利用しているWordPressのデフォルトテーマである twenty nineteenのフッターにあるコピーライトを変更します。
変更前のコピーライト

変更後のコピーライト

コピーライトの変更方法
フッターの表示内容はサーバーのWordPressのテーマが格納されているフォルダ内の
“wp-content/themes/twentyseventeen/template-parts/footer”フォルダにある
“site-info.php”ファイル
で定義されています。
変更前のコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <?php /** * Displays footer site info * * @package WordPress * @subpackage Twenty_Seventeen * @since 1.0 * @version 1.0 */ ?> <div class = "site-info" > <?php if ( function_exists( 'the_privacy_policy_link' ) ) { the_privacy_policy_link( '' , '<span role="separator" aria-hidden="true"></span>' ); } ?> <a href= "<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>" class = "imprint" > <?php printf( __( 'Proudly powered by %s' , 'twentyseventeen' ), 'WordPress' ); ?> </a> </div><!-- .site-info --> |
変更後のコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php /** * Displays footer site info * * @package WordPress * @subpackage Twenty_Seventeen * @since 1.0 * @version 1.0 */ ?> <div class = "site-info" > <?php if ( function_exists( 'the_privacy_policy_link' ) ) { the_privacy_policy_link( '' , '<span role="separator" aria-hidden="true"></span>' ); } ?> <p>©2019 <a href= "<?php echo site_url(); ?>" ><?php echo bloginfo( 'name' ); ?></a></p> </div><!-- .site-info --> |
具体的な変更箇所
変更前の一番下を除外して、下から3行を削除します。
1 2 3 | <a href= "<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>" class = "imprint" > <?php printf( __( 'Proudly powered by %s' , 'twentyseventeen' ), 'WordPress' ); ?> </a> |
↓
下記の一行に変更します。
1 | <p>©2019 <a href= "<?php echo site_url(); ?>" ><?php echo bloginfo( 'name' ); ?></a></p> |