我使用了我制作的主题。我需要在标题中显示Sidebar Login插件的小部件。
我在header.php中试过这个:
<div class="login"><?php the_widget('sidebar-login');?></div>
页面加载没有错误,我有一个占用的空间,但内部没有任何东西。也许是因为我在$ widget之后没有插入$ instance和$ args,但我不知道它们是什么。也许我需要为我链接的插件的特定代码。提前感谢你。
答案 0 :(得分:1)
Ciao Michele, 你想使用Sidebar Login plugin from Mike Jolley吗?
根据the codex, the_widget 方法需要插件类名,而不是名称空间,如果你使用这样的代码,你的代码应该可以工作:
<?php the_widget('Sidebar_Login_Widget');?>
如果您使用的是其他插件,则必须在php代码中检查正确的类名。