[WordPress] [Anima]如何關閉Powered by Anima的顯示

[WordPress] [Anima]如何關閉Powered by Anima的顯示

如何移除Anima版型右下角版權宣示 其實只是怕忘了才紀錄下來 以下教學您也可以路過即可

您無法在WordPress 後端控制台中工作,必須通過FTP獲取PHP文件並直接修改。
以下位置使用的文件名稱為 “ core.php”。

your filename / wp-content / themes / anima / includes / core.php
請務必先行備份再作編輯!

使用文本編輯器等打開“ core.php”,並搜尋 Powered by 關鍵字至相關的位置。約313行將之如下

/*
echo ‘<div style=”display:block;float:right;clear: right;”>’ . __( “Powered by”, “anima” ) .
‘<a target=”_blank” href=”‘ . esc_html( $the_theme->get( ‘ThemeURI’ ) ) . ‘” title=”‘;
echo ‘Anima WordPress Theme by ‘ . ‘Cryout Creations”> ‘ . ‘Anima’ .'</a> &amp; <a target=”_blank” href=”‘ . “http://wordpress.org/”;
echo ‘” title=”‘ . esc_attr__( “Semantic Personal Publishing Platform”, “anima”) . ‘”> ‘ . sprintf( ” %s.”, “WordPress” ) . ‘</a></div>’;
*/