我使用相同的代码在WordPress中创建一个小部件。我使用的代码已经扩展了一个类。它工作正常。
不是每次我需要一个新的小部件时都复制/粘贴它,所以我可以使用一些参数来调用它,然后让它工作。
我要传递4个变量。我不熟悉如何用课程这样做。如果这是一个功能我会称之为
function function_name($ functionname,$ classname,$ description,$ filename)
当我扩展课程时,如何获得类似的结果。你可以看到上面的四个变量。最终结果是在WordPress中创建一个窗口小部件项,加载时会从特定位置添加文件。
虽然这是在WordPress中使用的,但我决定发布stackoverflow而不是wp-stackoverflow,因为这与更普遍的类有关。
class exampleWidget extends WP_Widget
{
function exampleWidget()
{
$widget_ops = array('classname' => 'exampleWidget', 'description' => 'Description here...' );
$this->WP_Widget('exampleWidget', 'Description - Adds Switch', $widget_ops);
}
function form($instance)
{
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
$title = $instance['title'];
?>
<p><label for="<?php echo $this->get_field_id('title'); ?>">Title: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo attribute_escape($title); ?>" /></label></p>
<?php
}
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 here
get_template_part( 'includes/widget/widget-name' );
echo $after_widget;
}
}
add_action( 'widgets_init', create_function('', 'return register_widget("exampleWidget");') );
答案 0 :(得分:0)
也许你需要这样的东西?
class My_WP_Widget extends WP_Widget
{
protected $id_base = null; // Will generated automatically in WP_Widget constructor
protected $classname = null; // Will generated automatically in WP_Widget constructor
protected $name = 'Default widget name';
protected $description = 'Default widget description';
protected $filename;
public function __construct() {
$widget_options = array(
'classname' => $this->classname,
'description' => $this->description,
'filename' => $this->filename
);
parent::__construct($this->id_base, $this->name, $widget_options);
}
}
class FilenameOverriding_My_WP_Widget extends My_WP_Widget
{
protected $filename = 'overriden/filename.ext';
}
// Usage:
add_action( 'widgets_init', function(){
return register_widget( 'FilenameOverriding_My_WP_Widget' );
});