WPSEO_Taxonomy_Social_Fields::get PHP Method

get() public method

Returning the fields for the social media tab
public get ( ) : array
return array
    public function get()
    {
        $fields = array();
        foreach ($this->networks as $option => $settings) {
            $fields_to_push = $this->get_by_network($option);
            $fields = array_merge($fields, $fields_to_push);
        }
        return $this->filter_hidden_fields($fields);
    }