WordPress 中的 [(特殊功能)] 是什么,如何为我的插件启用它们?

发布于 2024-11-02 07:52:00 字数 340 浏览 3 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心碎的声音 2024-11-09 07:52:00

它们被称为短代码

此链接应告诉您开始使用它们所需了解的所有信息: http://codex.wordpress.org/Shortcode_API< /a>

伪示例:

function category( $cat ) {
    extract( shortcode_atts( array(
        'cat' => 'something'
    ), $atts ) );

    return "category is {$cat}";
}
add_shortcode( 'myPlugin', 'category' );

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:

function category( $cat ) {
    extract( shortcode_atts( array(
        'cat' => 'something'
    ), $atts ) );

    return "category is {$cat}";
}
add_shortcode( 'myPlugin', 'category' );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文