Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
anisogamete
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
deprecated
/
admin
/
taxonomy
:
class-taxonomy-content-fields.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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' ); } }