$this->get_field_config(
__( 'Snippet editor', 'wordpress-seo' ),
'',
'snippetpreview',
array(
'help-button' => __( 'Show information about the snippet editor', 'wordpress-seo' ),
/* translators: 1: link open tag; 2: link close tag. */
'help' => sprintf( __( 'This is a rendering of what this post might look like in Google\'s search results. %1$sLearn more about the Snippet Preview%2$s.', 'wordpress-seo' ), '', '' ),
)
),
'focuskw' => $this->get_field_config(
__( 'Focus keyword', 'wordpress-seo' ),
'',
'focuskeyword',
array(
'help-button' => __( 'Show information about the focus keyword', 'wordpress-seo' ),
/* translators: 1: link open tag; 2: link close tag. */
'help' => sprintf( __( 'Pick the main keyword or keyphrase that this post/page is about. %1$sLearn more about the Focus Keyword%2$s.', 'wordpress-seo' ), '', '' ),
)
),
'analysis' => $this->get_field_config(
__( 'Analysis', 'wordpress-seo' ),
'',
'pageanalysis',
array(
'help-button' => __( 'Show information about the content analysis', 'wordpress-seo' ),
/* translators: 1: link open tag; 2: link close tag. */
'help' => sprintf( __( 'This is the content analysis, a collection of content checks that analyze the content of your page. %1$sLearn more about the Content Analysis Tool%2$s.', 'wordpress-seo' ), '', '' ),
)
),
'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',
''
),
);
return $this->filter_hidden_fields( $fields );
}
}