# wordpress-seo/18.2/src/deprecated/admin/taxonomy/class-taxonomy-content-fields.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 18.2. 26 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.2/code/src/deprecated/admin/taxonomy/class-taxonomy-content-fields.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.2/raw/src/deprecated/admin/taxonomy/class-taxonomy-content-fields.php
- Modified: 2020-09-01T12:27:02+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/18.2/code/src/deprecated/admin/taxonomy/class-taxonomy-content-fields.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

/**
 * This class parses all the values for the general tab in the Yoast SEO settings metabox.
 */
class WPSEO_Taxonomy_Content_Fields {

	/**
	 * Returns array with the fields for the general tab.
	 *
	 * @deprecated 14.9
	 * @return array
	 */
	public function get() {
		_deprecated_function( __METHOD__, '14.9', 'WPSEO_Taxonomy_Fields::get' );

		$fields = new WPSEO_Taxonomy_Fields();
		return $fields->get( 'social' );
	}
}

```
