将span HTML添加到woocommerce商店标题

时间:2017-07-19 12:31:45

标签: php html wordpress function woocommerce

如何在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")

1 个答案:

答案 0 :(得分:1)

用于span标记的ID属性的双引号会破坏您的字符串。要么逃避它们,要么切换到单引号。

单引号示例:

$signed

逃避示例:

return 'Menu<br><span id="...';

文档:http://php.net/manual/en/language.types.string.php