Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../public_h.../wp-conte.../plugins/wordpres.../admin/views
File: user-profile.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* WPSEO plugin file.
[2] Fix | Delete
*
[3] Fix | Delete
* @package WPSEO\Admin
[4] Fix | Delete
*
[5] Fix | Delete
* @uses object $user
[6] Fix | Delete
*/
[7] Fix | Delete
[8] Fix | Delete
/* translators: %1$s expands to Yoast SEO */
[9] Fix | Delete
$wpseo_up_settings_header = sprintf( __( '%1$s settings', 'wordpress-seo' ), 'Yoast SEO' );
[10] Fix | Delete
$wpseo_no_index_author_label = sprintf(
[11] Fix | Delete
/* translators: %s expands to "this author's archives". */
[12] Fix | Delete
__( 'Do not allow search engines to show %s in search results.', 'wordpress-seo' ),
[13] Fix | Delete
__( 'this author\'s archives', 'wordpress-seo' )
[14] Fix | Delete
);
[15] Fix | Delete
?>
[16] Fix | Delete
[17] Fix | Delete
<div class="yoast yoast-settings">
[18] Fix | Delete
[19] Fix | Delete
<h2 id="wordpress-seo"><?php echo esc_html( $wpseo_up_settings_header ); ?></h2>
[20] Fix | Delete
[21] Fix | Delete
<?php if ( ! WPSEO_Options::get( 'disable-author' ) ) : ?>
[22] Fix | Delete
<label for="wpseo_author_title"><?php esc_html_e( 'Title to use for Author page', 'wordpress-seo' ); ?></label>
[23] Fix | Delete
<input class="yoast-settings__text regular-text" type="text" id="wpseo_author_title" name="wpseo_author_title"
[24] Fix | Delete
value="<?php echo esc_attr( get_the_author_meta( 'wpseo_title', $user->ID ) ); ?>"/><br>
[25] Fix | Delete
[26] Fix | Delete
<label for="wpseo_author_metadesc"><?php esc_html_e( 'Meta description to use for Author page', 'wordpress-seo' ); ?></label>
[27] Fix | Delete
<textarea rows="5" cols="30" id="wpseo_author_metadesc"
[28] Fix | Delete
class="yoast-settings__textarea yoast-settings__textarea--medium"
[29] Fix | Delete
name="wpseo_author_metadesc"><?php echo esc_textarea( get_the_author_meta( 'wpseo_metadesc', $user->ID ) ); ?></textarea><br>
[30] Fix | Delete
[31] Fix | Delete
<input class="yoast-settings__checkbox double" type="checkbox" id="wpseo_noindex_author"
[32] Fix | Delete
name="wpseo_noindex_author"
[33] Fix | Delete
value="on" <?php echo ( get_the_author_meta( 'wpseo_noindex_author', $user->ID ) === 'on' ) ? 'checked' : ''; ?> />
[34] Fix | Delete
<label class="yoast-label-strong"
[35] Fix | Delete
for="wpseo_noindex_author"><?php echo esc_html( $wpseo_no_index_author_label ); ?></label><br>
[36] Fix | Delete
<?php endif; ?>
[37] Fix | Delete
[38] Fix | Delete
<?php if ( WPSEO_Options::get( 'keyword_analysis_active', false ) ) : ?>
[39] Fix | Delete
<input class="yoast-settings__checkbox double" type="checkbox" id="wpseo_keyword_analysis_disable"
[40] Fix | Delete
name="wpseo_keyword_analysis_disable" aria-describedby="wpseo_keyword_analysis_disable_desc"
[41] Fix | Delete
value="on" <?php echo ( get_the_author_meta( 'wpseo_keyword_analysis_disable', $user->ID ) === 'on' ) ? 'checked' : ''; ?> />
[42] Fix | Delete
<label class="yoast-label-strong"
[43] Fix | Delete
for="wpseo_keyword_analysis_disable"><?php esc_html_e( 'Disable SEO analysis', 'wordpress-seo' ); ?></label>
[44] Fix | Delete
<br>
[45] Fix | Delete
<p class="description" id="wpseo_keyword_analysis_disable_desc">
[46] Fix | Delete
<?php esc_html_e( 'Removes the focus keyphrase section from the metabox and disables all SEO-related suggestions.', 'wordpress-seo' ); ?>
[47] Fix | Delete
</p>
[48] Fix | Delete
<?php endif; ?>
[49] Fix | Delete
[50] Fix | Delete
<?php if ( WPSEO_Options::get( 'content_analysis_active', false ) ) : ?>
[51] Fix | Delete
<input class="yoast-settings__checkbox double" type="checkbox" id="wpseo_content_analysis_disable"
[52] Fix | Delete
name="wpseo_content_analysis_disable" aria-describedby="wpseo_content_analysis_disable_desc"
[53] Fix | Delete
value="on" <?php echo ( get_the_author_meta( 'wpseo_content_analysis_disable', $user->ID ) === 'on' ) ? 'checked' : ''; ?> />
[54] Fix | Delete
<label class="yoast-label-strong"
[55] Fix | Delete
for="wpseo_content_analysis_disable"><?php esc_html_e( 'Disable readability analysis', 'wordpress-seo' ); ?></label>
[56] Fix | Delete
<br>
[57] Fix | Delete
<p class="description" id="wpseo_content_analysis_disable_desc">
[58] Fix | Delete
<?php esc_html_e( 'Removes the readability analysis section from the metabox and disables all readability-related suggestions.', 'wordpress-seo' ); ?>
[59] Fix | Delete
</p>
[60] Fix | Delete
<?php endif; ?>
[61] Fix | Delete
[62] Fix | Delete
<?php if ( WPSEO_Options::get( 'inclusive_language_analysis_active', false ) ) : ?>
[63] Fix | Delete
<input class="yoast-settings__checkbox double" type="checkbox" id="wpseo_inclusive_language_analysis_disable"
[64] Fix | Delete
name="wpseo_inclusive_language_analysis_disable" aria-describedby="wpseo_inclusive_language_analysis_disable_desc"
[65] Fix | Delete
value="on" <?php echo ( get_the_author_meta( 'wpseo_inclusive_language_analysis_disable', $user->ID ) === 'on' ) ? 'checked' : ''; ?> />
[66] Fix | Delete
<label class="yoast-label-strong"
[67] Fix | Delete
for="wpseo_inclusive_language_analysis_disable"><?php esc_html_e( 'Disable inclusive language analysis', 'wordpress-seo' ); ?></label>
[68] Fix | Delete
<br>
[69] Fix | Delete
<p class="description" id="wpseo_inclusive_language_analysis_disable_desc">
[70] Fix | Delete
<?php esc_html_e( 'Removes the inclusive language analysis section from the metabox and disables all inclusive language-related suggestions.', 'wordpress-seo' ); ?>
[71] Fix | Delete
</p>
[72] Fix | Delete
<?php endif; ?>
[73] Fix | Delete
[74] Fix | Delete
<?php do_action( 'wpseo_render_user_profile', $user ); ?>
[75] Fix | Delete
</div>
[76] Fix | Delete
[77] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function