任何想法如何为我的wordpress插件添加表格?

时间:2019-08-07 13:19:00

标签: javascript php html wordpress reactjs

我目前正在为Wordpress创建自定义表格框。我已经有一个自定义的插件和一些javascript代码,但是大多数情况下它已被复制,我无法弄清楚如何将其转换为表格(使用插件时,我只能添加纯文本,并且它周围有一个彩色框)。如果有人可以帮我弄清楚,那就太好了。

一些代码

function updateContent(event) {
  props.setAttributes({content: event.target.value})
}
function updateColor(value) {
  props.setAttributes({color: value.hex})
}
return React.createElement(
  "div",
  null,
  React.createElement(
    "h3",
    null,
    "Simple Box"
  ),
  React.createElement("input", { type: "text", value: props.attributes.content, onChange: updateContent }),
  React.createElement(wp.components.ColorPicker, { color: props.attributes.color, onChangeComplete: updateColor })
);

基本上就是所有魔术发生的地方 (不知道为什么它如此怪异)

0 个答案:

没有答案