Elementor和WordPress - php特殊字符必须转义

nqwrtyyt  于 2023-02-18  发布在  PHP
关注(0)|答案(2)|浏览(128)

我正在尝试将此代码插入到〉Elementor〉自定义代码来更改WooCommerce中的销售徽章文本
add_filter('woocommerce_销售_flash','编辑_销售_徽章');函数edit_销售_badge(){ return '文本-转到此处';}
从本页:https://pluginsforwp.com/blog/change-sale-badge-woocommerce/-但我不知道如何使它工作,有人能帮助我吗?PHP可以添加到Elementor自定义代码吗?谢谢!
用PHP Package 代码,但得到错误:php特殊字符必须转义

ozxc1zmp

ozxc1zmp1#

你的代码是用

<?php and ?>

因此它看起来如下所示:

<?php
add_filter('woocommerce_sale_flash', 'edit_sale_badge');
function edit_sale_badge() {
    return 'TEXT-GOES-HERE';
}
?>

在您的链接中,他们将其添加到主题功能中:functions.php为什么不也在那里做呢?
注意:下面的符号','和'是有区别的,你想用最后一个。

ttisahbt

ttisahbt2#

您不能在元素或自定义代码区域插入php。您必须通过子主题中的functions.php添加此内容。或者您可以通过其他插件添加此内容(2)。
请看这里:https://elementor.com/help/custom-code-pro/
(2):https://de.wordpress.org/plugins/insert-php-code-snippet/

相关问题