Wordpress - 使 div 中的文本可供客户端编辑
我在 WordPress 主题的标题中创建了一个 DIV。在此 DIV 中,有两个标题,其中包含一些文本(当前报价的标题和描述),我希望客户能够在此 DIV 区域中编辑此文本。我找不到一种简单的方法来使 DIV 中的某些文本可编辑。
有简单的方法吗?我认为制作新的页面模板并不是一个简单的方法,因为 DIV 位于我的标题的 html 代码中,它不是 WordPress 中的自定义帖子。
I made a DIV within the header of my WordPress theme. Within this DIV there are two headers with some text in it (title and description of a current offer) I want the client to be able to edit this the text within this DIV region. I can't find an easy way to just make some text within a DIV editable.
Is there an easy way? making a new page template isn't an easy way I think, because the DIV is within the html code of my header, it's not a custom post within WordPress.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您熟悉 WordPress,您可以创建一个新的 侧边栏小部件 并将该侧边栏插入到您的标头中。
客户端可以在后台的Widget区域编辑文本。
If you know your way around WordPress you could create a new sidebar widget and inject that sidebar into your header.
The client could edit the text in the Widget area of the admin.
你可以使用 JQuery。当您单击 div 时,将 div 替换为文本区域。
You could use JQuery. When you click the div, replace the div, with an textarea.