사용자 정의 위젯에 클래스를 추가하는 또 다른 방법 은 다음과 같이 구문 함수 의 ' classname '키 를 사용하는 것입니다.
class My_Widget_Class extends WP_Widget {
// Prior PHP5 use the children class name for the constructor…
// function My_Widget_Class()
function __construct() {
$widget_ops = array(
'classname' => 'my-class-name',
'description' => __("Widget for the sake of Mankind",'themedomain'),
);
$control_ops = array(
'id_base' => 'my-widget-class-widget'
);
//some more code after...
// Call parent constructor you may substitute the 1st argument by $control_ops['id_base'] and remove the 4th.
parent::__construct(@func_get_arg(0),@func_get_arg(1),$widget_ops,$control_ops);
}
}
그리고 테마에서 기본 ' before_widget '을 사용하거나 register_sidebar()
function.php에서 사용하는 경우 다음 과 같이하십시오.
//This is just an example.
register_sidebar(array(
'name'=> 'Sidebar',
'id' => 'sidebar-default',
'class' => '',//I never found where this is used...
'description' => 'A sidebar for Mankind',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',//This is the important code!!
'after_widget' => '</aside>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
그런 다음 위젯의 모든 인스턴스에서 다음과 같이 'widget my-class-name'클래스를 갖습니다.
<aside class="widget my-class-name" id="my-widget-class-widget-N"><!-- where N is a number -->
<h3>WIDGET TITLE</h3>
<p>WIDGET CONTENT</p>
</aside>
부모 생성자를 먼저 호출 한 다음 원하는 클래스 이름을 추가 할 수도 있습니다.
class My_Widget_Class extends WP_Widget {
// Better defining the parent argument list …
function __construct($id_base, $name, $widget_options = array(), $control_options = array())
{ parent::__construct($id_base, $name, $widget_options, $control_options);
// Change the class name after
$this->widget_options['classname'].= ' some-extra';
}
}