カスタムウィジェット内からbefore_widgetにクラスを追加する


10

幅を求めるシンプルなカスタムウィジェットがあります(これは後でフロントエンドで使用されます)。幅フィールドは選択ドロップダウンであるため、事前定義されたオプションがあります。

私はウィジェットの多くのインスタンスを持ち、それぞれに独自の幅設定があります。

今、私のウィジェットコードには次のコードがあります:

echo $before_widget;

その結果:

<div class="widget my" id="my-widget-1"></div>

私がしたいのは、どういうわけか$before_widget私自身のクラス(選択ドロップダウンから指定された幅)にフックして追加します。したがって、次のマークアップが必要です。

<div class="widget my col480" id="my-widget-3"></div>

クラスが指定されていない場合は、追加しclass="col480"ます。

どうすればこれを達成できますか?

手伝ってくれてありがとう!ダーシャ

回答:


14

ああ、$before_widget変数はdiv要素を表す文字列です:<div class="widget my" id="my-widget-1">。そこで$before_widget、「class」サブストリングをチェックして、それに$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
}

$widget_width変数を自分のウィジェットコード内のウィジェットdiv要素に追加したいと思いました(変数に簡単にアクセスできました$widget_width)。

それが理にかなっていて誰かを助けることを願っています。

おかげで、ダーシャ


いい仕事-ウィジェットの問題で私を助けてくれた-ありがとう:)
Q Studio

10

dynamic_sidebar_paramsフィルターフックを使用してウィジェットを見つけ、それにクラスを追加できます。

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;
} 

返信いただきありがとうございます。カスタムウィジェットのインスタンスがたくさんあり、それぞれに固有の幅があります。そのため、フィルターではなく、ウィジェットコード自体の中にクラスを追加したいと考えました。それが理にかなっていると思いますか?
dashaluna

インスタンスオプションはオプションテーブルに保存されるので、ウィジェットIDがわかったら、そこから取得できますget_option('widget-name')
Bainternet

1
あなたの助けに感謝します!私はあなたの解決策を本当に理解できなくて申し訳ありません:(そして私は幅変数に簡単にアクセスできる一方で、すべてのコードを私のカスタムウィジェットファイル内に入れたいと思いました。私は$before_widget文字列をハックしてしまいました。あなたの答えはそれ$before_widgetが文字列であることを発見する正しいトラック。ありがとうございました:)
dashaluna

テーマファイルを編集するのではなく、ワードプレスフィルターを使用するため、これは推奨されるオプションです
rhysclay

6

カスタムウィジェットのクラスを追加するもう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 'を使用するか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';
    }
}

1

最初にカスタムプレースホルダークラスをコンストラクターに追加します

<?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 &amp; 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/の例を ご覧ください。


0

あなたはこのフィルターを試すことができます:

/**
 * 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;
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.