當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WP_Widget::_set方法代碼示例

本文整理匯總了PHP中WP_Widget::_set方法的典型用法代碼示例。如果您正苦於以下問題:PHP WP_Widget::_set方法的具體用法?PHP WP_Widget::_set怎麽用?PHP WP_Widget::_set使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WP_Widget的用法示例。


在下文中一共展示了WP_Widget::_set方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get_widget_instance

 /**
  * @return \WP_Widget
  */
 public function get_widget_instance()
 {
     if (is_null($this->_widget_instance)) {
         global $wp_widget_factory;
         if (isset($wp_widget_factory->widgets[$this->_widget_name])) {
             $this->_widget_instance = $wp_widget_factory->widgets[$this->_widget_name];
             $this->_widget_instance->_set('REPLACE_TO_ID');
         } elseif (class_exists($this->_widget_name)) {
             $this->_widget_instance = new $this->_widget_name();
             $this->_widget_instance->_set('REPLACE_TO_ID');
         }
     }
     return $this->_widget_instance;
 }
開發者ID:pojome,項目名稱:elementor,代碼行數:17,代碼來源:wordpress.php

示例2:

 /**
  * @see WP_Widget::get_field_id()
  */
 function test_wp_widget_get_field_id()
 {
     $widget = new WP_Widget('foo', 'Foo');
     $widget->_set(2);
     $this->assertEquals('widget-foo-2-title', $widget->get_field_id('title'));
 }
開發者ID:Benrajalu,項目名稱:philRaj,代碼行數:9,代碼來源:widgets.php

示例3:

 /**
  * @see WP_Widget::get_field_id()
  * @dataProvider data_wp_widget_get_field_id
  *
  */
 function test_wp_widget_get_field_id($expected, $value_to_test)
 {
     $widget = new WP_Widget('foo', 'Foo');
     $widget->_set(2);
     $this->assertEquals($expected, $widget->get_field_id($value_to_test));
 }
開發者ID:rclilly,項目名稱:wordpress-develop,代碼行數:11,代碼來源:widgets.php


注:本文中的WP_Widget::_set方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。