私はその幅を尋ねる簡単なカスタムウィジェットを持っています(それは後にフロントエンドで使われます)。幅フィールドは選択ドロップダウンなので、ユーザーには事前定義されたオプションがあります。
私は私のウィジェットの多くのインスタンスを持つことになり、それぞれが独自の幅設定を持ちます。
今、私のウィジェットのコードで私は次のコードがあります:
echo $before_widget;
その結果、
<div class="widget my" id="my-widget-1"></div>
私がやりたいことはどういうわけか$before_widget
にフックして私自身のクラスを追加することです(selectドロップダウンから指定された幅)。だから、私は次のようなマークアップが欲しい:
<div class="widget my col480" id="my-widget-3"></div>
クラスが指定されていない場合は、class="col480"
を追加します。
どうやってこれを達成できますか?
手伝ってくれてありがとう!ダーシャ
ああ、それで$before_widget
変数はdiv要素を表す文字列です:<div class="widget my" id="my-widget-1">
。だから私は "class"サブストリングの$before_widget
をチェックし、それに私の$widget_width
値を追加しました。
コードは私のカスタムウィジェットファイルからのものです。
function widget( $args, $instance ) {
extract( $args );
... //other code
$widget_width = !empty($instance['widget_width']) ? $instance['widget_width'] : "col300";
/* Add the width from $widget_width to the class from the $before widget */
// no 'class' attribute - add one with the value of width
if( strpos($before_widget, 'class') === false ) {
// include closing tag in replace string
$before_widget = str_replace('>', 'class="'. $widget_width . '">', $before_widget);
}
// there is 'class' attribute - append width value to it
else {
$before_widget = str_replace('class="', 'class="'. $widget_width . ' ', $before_widget);
}
/* Before widget */
echo $before_widget;
... //other code
}
私は自分のウィジェットコード内のウィジェットdiv要素に自分の$widget_width
変数を追加したいと思いました(私は$widget_width
変数に簡単にアクセスできましたが)。
それが理にかなっていると誰かを助けることを願っています。
ありがとう、ダーシャ
あなたはあなたのウィジェットを見つけてそれにあなたのクラスを追加するためにdynamic_sidebar_params
filter hookを使うことができます:
add_filter('dynamic_sidebar_params', 'add_classes_to__widget');
function add_classes_to__widget($params){
if ($params[0]['widget_id'] == "my-widget-1"){ //make sure its your widget id here
// its your widget so you add your classes
$classe_to_add = 'col480 whatever bla bla '; // make sure you leave a space at the end
$classe_to_add = 'class=" '.$classe_to_add;
$params[0]['before_widget'] = str_replace('class="',$classe_to_add,$params[0]['before_widget']);
}
return $params;
}
カスタムウィジェットのクラスを追加するもう1つの方法は、次のようにあなたの構築関数の ' 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 'を使うか、function.phpでregister_sidebar()
を使うなら、このようにしてください:
//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';
}
}
まずコンストラクタにカスタムプレースホルダクラスを追加します。
<?php
public function __construct() {
$widget_ops = array(
'classname' =>; 'widget_text eaa __eaa__', //__eaa__ is my placeholder css class
'description' =>; __( 'AdSense ads, arbitrary text, HTML or JS.','eaa' ),
'customize_selective_refresh' =>; true,
);
$control_ops = array( 'width' =>; 400, 'height' =>; 350 );
parent::__construct( 'eaa', __( 'Easy AdSense Ads & Scripts', 'eaa' ), $widget_ops, $control_ops );
}
?>
それから、このようなウィジェットオプションに基づいて、あなたが選んだクラスに置き換えてください。
<?php
if ( $instance['no_padding'] ) {
$args['before_widget'] = str_replace( '__eaa__', 'eaa-clean', $args['before_widget'] );
}
?>
例で詳細を見つけることができます http://satishgandham.com/2017/03/adding-dynamic-classes-custom-wordpress-widgets/ /
あなたはこのフィルタを試すことができます:
/**
* This function loops through all widgets in sidebar
* and adds a admin form value to the widget as a class name
*
* @param array $params Array of widgets in sidebar
* @return array
*/
add_filter( 'dynamic_sidebar_params', 'nen_lib_add_class_to_widget' );
function nen_lib_add_class_to_widget( $params )
{
foreach( $params as $key => $widget )
{
if( !isset($widget['widget_id']) ) continue;
// my custom function to get widget data from admin form (object)
$widget_data = nen_get_widget_data($widget['widget_id']) ;
// check if field excists and has value
if( isset($widget_data->wm_name) && $widget_data->wm_name )
{
// convert and put value in array
$classes = array( sanitize_title( $widget_data->wm_name ) );
// add filter, to be able to add more
$classes = apply_filters( 'nen_lib_add_class_to_widget' , $classes , $widget['widget_id'] , $widget , $widget_data );
// get 'before_widget' element, set find and replace
$string = $params[$key]['before_widget'];
$find = '"widget ';
$replace = '"widget '.implode( ' ' , $classes ).' ';
// new value
$new_before = str_replace( $find , $replace , $string ) ;
// set new value
$params[$key]['before_widget'] = $new_before;
}
}
return $params;
}