| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?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 extends WPSEO_Taxonomy_Fields {
- /**
- * Returns array with the fields for the general tab
- *
- * @return array
- */
- public function get() {
- $fields = array(
- 'title' => $this->get_field_config(
- '',
- '',
- 'hidden',
- ''
- ),
- 'desc' => $this->get_field_config(
- '',
- '',
- 'hidden',
- ''
- ),
- 'linkdex' => $this->get_field_config(
- '',
- '',
- 'hidden',
- ''
- ),
- 'content_score' => $this->get_field_config(
- '',
- '',
- 'hidden',
- ''
- ),
- 'focuskw' => $this->get_field_config(
- '',
- '',
- 'hidden',
- ''
- ),
- );
- return $this->filter_hidden_fields( $fields );
- }
- }
|