File: /home/dermova/public_html/me/wp-content/plugins/wordpress-seo/admin/views/user-profile.php
<?php
/**
* @package WPSEO\Admin
*/
?>
<h3 id="wordpress-seo"><?php
/* translators: %1$s expands to Yoast SEO */
printf( __( '%1$s settings', 'wordpress-seo' ), 'Yoast SEO' );
?></h3>
<table class="form-table">
<tr>
<th>
<label
for="wpseo_author_title"><?php _e( 'Title to use for Author page', 'wordpress-seo' ); ?></label>
</th>
<td><input class="regular-text" type="text" id="wpseo_author_title" name="wpseo_author_title"
value="<?php echo esc_attr( get_the_author_meta( 'wpseo_title', $user->ID ) ); ?>"/>
</td>
</tr>
<tr>
<th>
<label
for="wpseo_author_metadesc"><?php _e( 'Meta description to use for Author page', 'wordpress-seo' ); ?></label>
</th>
<td>
<textarea rows="3" cols="30" id="wpseo_author_metadesc"
name="wpseo_author_metadesc"><?php echo esc_textarea( get_the_author_meta( 'wpseo_metadesc', $user->ID ) ); ?></textarea>
</td>
</tr>
<?php if ( $options['usemetakeywords'] === true ) { ?>
<tr>
<th>
<label
for="wpseo_author_metakey"><?php _e( 'Meta keywords to use for Author page', 'wordpress-seo' ); ?></label>
</th>
<td>
<input class="regular-text" type="text" id="wpseo_author_metakey"
name="wpseo_author_metakey"
value="<?php echo esc_attr( get_the_author_meta( 'wpseo_metakey', $user->ID ) ); ?>"/>
</td>
</tr>
<?php } ?>
<tr>
<th>
<label
for="wpseo_author_exclude"><?php _e( 'Exclude user from Author-sitemap', 'wordpress-seo' ); ?></label>
</th>
<td>
<input class="checkbox double" type="checkbox" id="wpseo_author_exclude"
name="wpseo_author_exclude"
value="on" <?php echo ( get_the_author_meta( 'wpseo_excludeauthorsitemap', $user->ID ) === 'on' ) ? 'checked' : ''; ?> />
</td>
</tr>
<?php if ( $options['content-analysis-active'] === true ) { ?>
<tr>
<th>
<label
for="wpseo_content_analysis_disable"><?php _e( 'Disable readability analysis', 'wordpress-seo' ); ?></label>
</th>
<td>
<input class="checkbox double" type="checkbox" id="wpseo_content_analysis_disable"
name="wpseo_content_analysis_disable"
value="on" <?php echo ( get_the_author_meta( 'wpseo_content_analysis_disable', $user->ID ) === 'on' ) ? 'checked' : ''; ?> />
<p class="description"><label for="wpseo_content_analysis_disable"><?php _e( 'Removes the readability tab from the metabox and disables all readability-related suggestions.', 'wordpress-seo' ); ?></label></p>
</td>
</tr>
<?php } ?>
</table>
<br/><br/>