<?php class FirstClass { public $options; public function __construct() { $this->options = ['yay']; //get_option('theme_options'); //wordpress fn } public function myFunction() { // } } class SecondClass extends FirstClass { } class ThirdClass extends FirstClass { } $secondClass = new SecondClass(); var_dump($secondClass->options); $thirdClass = new ThirdClass(); var_dump($thirdClass->options);
You have javascript disabled. You will not be able to edit any code.