关于 WordPress 显示单个小部件

发布于 2024-11-09 23:09:08 字数 123 浏览 1 评论 0原文

是否有任何 API 函数可以通过传递小部件 ID 或名称来在模板中的任何位置显示单个小部件。

我只想在我的主页中单独显示标签云小部件。 front-page.php

谢谢,

埃德文:)

Is there any API function which display single widget anywhere in our template by passing widget id or name something.

I just wanna show Tag Cloud widget alone in ma home page. front-page.php

Thanks,

Edvin :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

時窥 2024-11-16 23:09:08

the_widget() 允许您显示单个小部件。您不必先在管理区域中对其进行配置。

the_widget(
    'WP_Widget_Tag_Cloud',
    array(
        'title' => 'Popular tags',
    ),
    array(
        'before_title' => '<h3>',
        'after_title' => '</h3>',
    )
);

the_widget() allows you to display a single widget. You do not have to configure it first in the administration area.

the_widget(
    'WP_Widget_Tag_Cloud',
    array(
        'title' => 'Popular tags',
    ),
    array(
        'before_title' => '<h3>',
        'after_title' => '</h3>',
    )
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文