我正在使用名为 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">
© PakOutfit <?php echo get_the_date( 'Y' ); ?>
</div>
<?php
}
我按照这个 youtube 教程进行操作,
现在,当我尝试打开我的网站甚至其wp管理面板时,它说,
此页面不起作用 pakoutfit.com 当前无法处理此请求。 HTTP 错误 500
我不知道我的自定义函数插件在哪个文件中进行更改,以便我可以反转它们。
我正在使用 godaddy 域名和托管。
我是这个领域的新手。请帮助我使我的网站再次上线。谢谢
对网站的修改应通过WordPress子主题进行。不要编辑核心主题文件:https://codex.wordpress.org/Child_Themes
使用FTP或cPanel登录名,找到进行更改的文件并将其删除。这将恢复您的网站。
安装并激活子主题后,以及子主题函数的函数.php文件。
请务必更改此设置:
add-action
对此:
add_action