使用”我的自定义功能”插件编辑wordpress网站的页脚版权声明后,我的网站已关闭

我正在使用店面主题Pakoutfit.com创建一个wordpress商店。
我尝试使用” 我的自定义功能” 插件编辑其页脚凭据, 并使用此插件运行以下代码,

add-action( 'init' , 'custom_remove_footer_credit' , 10 ); function custom_remove_footer_credit(){ remove_action( 'storefront_footer' , 'storefront_credit' , 20 ); add_action( 'storefront_footer' , 'custom_storefront_credit' , 20 ); }function custom_storefront_credit(){ ?> < div class="site-info"> & copy; PakOutfit < ?php echo get_the_date( 'Y' ); ?> < /div> < ?php }

我按照此youtube教程进行操作,
现在, 当我尝试打开自己的网站, 甚至是其wp-admin面板时, 都会说:
此页面无法正常运行pakoutfit.com目前无法处理此请求。 HTTP错误500
我不知道我的自定义功能插件会在哪个文件中进行更改, 以便我可以将其撤消。
我正在使用Godaddy域名和托管。
我是这个领域的新手。请帮助我重新启用我的网站。谢谢
#1你的网站修改应通过WordPress子主题进行。不要编辑核心主题文件:https://codex.wordpress.org/Child_Themes
使用FTP或cPanel登录名, 找到进行更改的文件并将其删除。那将恢复你的站点。
一旦安装并激活了子主题, 然后将功能添加到子主题functions.php文件。
【使用” 我的自定义功能” 插件编辑wordpress网站的页脚版权声明后,我的网站已关闭】确保更改此:
add-action

对此:
add_action

    推荐阅读