如何为自定义字段创建短代码?

时间:2017-11-22 04:10:30

标签: wordpress shortcode custom-fields

我想知道如何为自定义字段创建短代码? enter image description here

1 个答案:

答案 0 :(得分:0)

简单的短代码创建示例

function customfield_function() {
  return 'i am describing my custom fields name here bla bla';
}
add_shortcode('customfield', 'customfield_function');

[customfield]

此处有更多click