WPLib::set_theme PHP 메소드

set_theme() 정적인 공개 메소드

static public set_theme ( WPLib_Theme_Base $theme )
$theme WPLib_Theme_Base
    static function set_theme($theme)
    {
        self::$_theme = $theme;
    }

Usage Example

예제 #1
0
파일: theme.php 프로젝트: r-a-stone/wplib
 /**
  * Theme method for setting a theme instance for unit test mocking.
  *
  * @param $theme
  *
  * @return mixed
  */
 static function set_mock_theme($theme)
 {
     WPLib::set_theme($theme);
 }