2020年wordpress ICP登録情報の追加

3210 ワード

2020年wordpress ICP登録情報の追加
私が使っているwordpress 5.3.2、トピックtwentyseventeenを例に挙げます.
cd/ルートディレクトリ/wp-content/themes/twentyseventeen/template-parts/footer
footerディレクトリの下にファイルsite-infoがあります.php.
次のように変更します.
<?php

/**

* Displays footer site info

*

* @package WordPress

* @subpackage Twenty_Seventeen

* @since Twenty Seventeen 1.0

* @version 1.0

*/

?>

<div class="site-info">

<?php

if ( function_exists( 'the_privacy_policy_link' ) ) {

the_privacy_policy_link( '', ' );

}

?>

<a href="" class="imprint">

<?php

/* translators: %s: WordPress */

printf( __( ' ', 'twentyseventeen' ));

?>

</a>

</div><!-- .site-info -->