Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function __construct() |
||
24 | { |
||
25 | $this->register(); |
||
26 | $this->xmlrpc(); |
||
27 | |||
28 | add_action('admin_head', [$this, 'adminHead']); |
||
|
|||
29 | |||
30 | add_theme_support('post-thumbnails'); |
||
31 | |||
32 | add_filter('theme_page_templates', [$this, 'templates']); |
||
33 | add_filter('timber_context', [$this, 'context']); |
||
34 | } |
||
35 | |||
62 |