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

After editing my wordpress website's footer copyright credites using My Custom Functions plugin, my site is down

我正在使用名为 Pakoutfit.com.

的店面主题制作一个 wordpress 商店

我尝试使用 My Custom Functions 插件编辑其页脚凭据,并使用此插件 运行 以下代码,

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 tutorial

之后这样做

现在,当我尝试打开我的网站甚至它的 wp-admin 面板时,它说,

This page isn’t working pakoutfit.com is currently unable to handle this request. HTTP ERROR 500

我不知道我的自定义函数插件在哪个文件中进行了更改,以便我可以撤消它们。

我正在使用godaddy域名和主机。

我是这个领域的新手。请帮助我使我的网站重新上线。谢谢

应通过 WordPress 子主题修改您的网站。不要编辑核心主题文件:https://codex.wordpress.org/Child_Themes

使用您的 FTP 或 cPanel 登录,找到您进行更改的文件并将其删除。这将恢复您的网站。

一旦您安装并激活了您的子主题,并且您的功能到子主题 functions.php 文件。

一定要改变这个:

add-action

为此:

add_action