我正在寻找一种更好的方法来为我的插件动态创建小部件。我已经阅读了这篇文章,并且相信我已经掌握了如何创建自定义小部件的基本用法。
现在我的问题是如何根据预定义的选项动态创建多个小部件。我能想到的一种方法是使用eval()
声明每个扩展类,但是随着类变得越来越大,它会太复杂。我不认为我可以处理作为函数参数传递的 php 代码;转义字符的工作量太大。也有人说使用 eval() 是不安全的,如果可能的话应该避免。
下面的代码已准备好作为插件运行。只需添加标题注释并激活它,您就会看到添加了两个小部件。
add_action( 'widgets_init', 'load_mywidgets');
function load_mywidgets() {
// prepare widgets
$arrWidgets = array(
array('id' => 'Bar', 'description' => 'This is a description for Bar', 'title' => 'This is Bar'),
array('id' => 'Foo', 'description' => 'This is a description for Foo', 'title' => 'This is Foo')
);
// define widget class(es)
foreach ($arrWidgets as $arrWidget) {
eval('
class ' . $arrWidget["id"] . ' extends WP_Widget {
function ' . $arrWidget["id"] . '() {
$widget_ops = array("classname" => "' . $arrWidget["id"] . '"
, "description" => "' . $arrWidget["description"] . '" );
$this->WP_Widget("' . $arrWidget["id"] . '", "' . $arrWidget["title"] . '", $widget_ops);
}
function form($instance) {
$instance = wp_parse_args( (array) $instance, array( "title" => "" ) );
$title = $instance["title"];
echo "<p><label for=\"" . $this->get_field_id("title") . "\">Title: <input class=\"widefat\" id=\"";
echo $this->get_field_id("title") . "\" name=\"" . $this->get_field_name("title") . "\" type=\"text\" value=\"" . attribute_escape($title) . "\" /></label></p>";
}
function update($new_instance, $old_instance) {
$instance = $old_instance;
$instance["title"] = $new_instance["title"];
return $instance;
}
function widget($args, $instance) {
extract($args, EXTR_SKIP);
echo $before_widget;
$title = empty($instance["title"]) ? " " : apply_filters("widget_title", $instance["title"]);
if (!empty($title))
echo $before_title . $title . $after_title;
// WIDGET CODE GOES HERE
echo "<h1>This is my new widget!</h1>";
echo $after_widget;
}
}
');
register_widget($arrWidget["id"]);
}
}
有没有更简单的方法来做到这一点?我认为在实例化类时将选项传递给构造函数的参数更有意义。但是当我查看核心时,构造函数已经定义并且想知道如何覆盖它。看来 WP_Widget 不是为实例化而设计的。
感谢您的信息。
[编辑]在这里发现了一个类似的问题:widget create dynamiclly in wordpress plugin
但是建议的解决方案也使用eval()
,基本上它与我上面介绍的方式相同。当我继续阅读核心时,它似乎register_widget()
只接受参数的类名,调用WP_Widget_Factory::register()
. 所以eval()
可能是这样做的唯一方法。但这并不直观。我仍在寻找一种更简单的方法来做到这一点。