如何在woocommerce商店标题中添加HTML范围?我有这个功能将商店标题更改为菜单,但我需要添加一个和一个跨度。当我添加html时出现错误
class Profile(db.Model):
__tablename__ = 'profiles'
id = Column(Integer, primary_key=True)
user_id = Column(Integer, ForeignKey('user.id'))
user = relationship("User", back_populates="profiles")
答案 0 :(得分:1)
用于span标记的ID属性的双引号会破坏您的字符串。要么逃避它们,要么切换到单引号。
单引号示例:
$signed
逃避示例:
return 'Menu<br><span id="...';