AMP_Post_Template::get PHP Метод

get() публичный Метод

public get ( $property, $default = null )
    public function get($property, $default = null)
    {
        if (isset($this->data[$property])) {
            return $this->data[$property];
        } else {
            _doing_it_wrong(__METHOD__, sprintf(__('Called for non-existant key ("%s").', 'amp'), esc_html($property)), '0.1');
        }
        return $default;
    }