Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如; 我有 10 个文本小部件,但我只想显示 1 个小部件。是否可以按名称显示小部件?
如果我使用<?php dynamic_sidebar('sidebar'); ?>它将显示边栏中的所有小部件。
<?php dynamic_sidebar('sidebar'); ?>
是的,您可以通过传递名称(也是可选参数)来显示特定的小部件,检查这个,
the_widget('WP_Widget_Text', $instance, $args);
使用显示小部件插件。