WordPress 中的 [(特殊功能)] 是什么,如何为我的插件启用它们?
我想在 WordPress 页面中包含一个函数,但由于 WordPress 不允许使用 标签,我无法定期添加该函数。
我注意到在使用图库插件时,它将 [flagallery gid=1 name="Gallery"]
添加到页面内容(在可视模式下编辑页面时)。有什么方法可以在我的插件中进行设置吗?
就像在我的页面上运行 [myPlugincategory=myCategory]
:
function myPlugin($category) {
echo ...
}
I'm wanting to include a function into a WordPress page, but since WordPress doesn't allow the use of <?php ?>
tags I cannot add the functions regularly.
I noticed when using a gallery plugin that it added [flagallery gid=1 name="Gallery"]
to the page content (when editing the page in visual mode). Is there some way to set this up in my plugin?
Like on my page have [myPlugin category=myCategory]
run:
function myPlugin($category) {
echo ...
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们被称为短代码。
此链接应告诉您开始使用它们所需了解的所有信息: http://codex.wordpress.org/Shortcode_API< /a>
伪示例:
They're called shortcodes.
This link should tell everything you need to know to get started with them: http://codex.wordpress.org/Shortcode_API
Pseudo example: