✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.223
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/admin/f25677/wp-admin1//options-discussion.php
<?php
/**
 * Discussion settings administration panel.
 *
 * @package WordPress
 * @subpackage Administration
 */
/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';

if ( ! current_user_can( 'manage_options' ) ) {
	wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
}

// Used in the HTML title tag.
$title       = __( 'Discussion Settings' );
$parent_file = 'options-general.php';

add_action( 'admin_print_footer_scripts', 'options_discussion_add_js' );

get_current_screen()->add_help_tab(
	array(
		'id'      => 'overview',
		'title'   => __( 'Overview' ),
		'content' => '<p>' . __( 'This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they will not all fit here! :) Use the documentation links to get information on what each discussion setting does.' ) . '</p>' .
			'<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>',
	)
);

get_current_screen()->set_help_sidebar(
	'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
	'<p>' . __( '<a href="https://wordpress.org/documentation/article/settings-discussion-screen/">Documentation on Discussion Settings</a>' ) . '</p>' .
	'<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
);

require_once ABSPATH . 'wp-admin/admin-header.php';
?>

<div class="wrap">
<h1><?php echo esc_html( $title ); ?></h1>

<form method="post" action="options.php">
<?php settings_fields( 'discussion' ); ?>

<table class="form-table indent-children" role="presentation">
<?php $default_post_settings_title = __( 'Default post settings' ); ?>
<tr>
<th scope="row"><?php echo $default_post_settings_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $default_post_settings_title; ?></span></legend>
<label for="default_pingback_flag">
<input name="default_pingback_flag" type="checkbox" id="default_pingback_flag" value="1" <?php checked( '1', get_option( 'default_pingback_flag' ) ); ?> />
<?php _e( 'Attempt to notify any blogs linked to from the post' ); ?></label>
<br />
<label for="default_ping_status">
<input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked( 'open', get_option( 'default_ping_status' ) ); ?> />
<?php _e( 'Allow link notifications from other blogs (pingbacks and trackbacks) on new posts' ); ?></label>
<br />
<label for="default_comment_status">
<input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked( 'open', get_option( 'default_comment_status' ) ); ?> />
<?php _e( 'Allow people to submit comments on new posts' ); ?></label>
<br />
<p class="description"><?php _e( 'Individual posts may override these settings. Changes here will only be applied to new posts.' ); ?></p>
</fieldset></td>
</tr>
<?php $other_comment_settings_title = __( 'Other comment settings' ); ?>
<tr>
<th scope="row"><?php echo $other_comment_settings_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $other_comment_settings_title; ?></span></legend>
<label for="require_name_email"><input type="checkbox" name="require_name_email" id="require_name_email" value="1" <?php checked( '1', get_option( 'require_name_email' ) ); ?> /> <?php _e( 'Comment author must fill out name and email' ); ?></label>
<br />
<label for="comment_registration">
<input name="comment_registration" type="checkbox" id="comment_registration" value="1" <?php checked( '1', get_option( 'comment_registration' ) ); ?> />
<?php _e( 'Users must be registered and logged in to comment' ); ?>
<?php
if ( ! get_option( 'users_can_register' ) && is_multisite() ) {
	echo ' ' . __( '(Signup has been disabled. Only members of this site can comment.)' );
}
?>
</label>
<br />
<input name="close_comments_for_old_posts" type="checkbox" id="close_comments_for_old_posts" value="1" <?php checked( '1', get_option( 'close_comments_for_old_posts' ) ); ?> /> <label for="close_comments_for_old_posts"><?php _e( 'Automatically close comments on old posts' ); ?></label>
<ul>
	<li>
		<label for="close_comments_days_old"><?php _e( 'Close comments when post is how many days old' ); ?></label>
		<input name="close_comments_days_old" type="number" step="1" min="0" id="close_comments_days_old" value="<?php echo esc_attr( get_option( 'close_comments_days_old' ) ); ?>" class="small-text" />
	</li>
</ul>

<input name="show_comments_cookies_opt_in" type="checkbox" id="show_comments_cookies_opt_in" value="1" <?php checked( '1', get_option( 'show_comments_cookies_opt_in' ) ); ?> />
<label for="show_comments_cookies_opt_in"><?php _e( 'Show comments cookies opt-in checkbox, allowing comment author cookies to be set' ); ?></label>
<br />
<input name="thread_comments" type="checkbox" id="thread_comments" value="1" <?php checked( '1', get_option( 'thread_comments' ) ); ?> />
<label for="thread_comments"><?php _e( 'Enable threaded (nested) comments' ); ?></label>

<?php
/**
 * Filters the maximum depth of threaded/nested comments.
 *
 * @since 2.7.0
 *
 * @param int $max_depth The maximum depth of threaded comments. Default 10.
 */
$maxdeep = (int) apply_filters( 'thread_comments_depth_max', 10 );

$thread_comments_depth = '<select name="thread_comments_depth" id="thread_comments_depth">';
for ( $i = 2; $i <= $maxdeep; $i++ ) {
	$thread_comments_depth .= "<option value='" . esc_attr( $i ) . "'";
	if ( (int) get_option( 'thread_comments_depth' ) === $i ) {
		$thread_comments_depth .= " selected='selected'";
	}
	$thread_comments_depth .= ">$i</option>";
}
$thread_comments_depth .= '</select>';
?>
<ul>
	<li>
		<label for="thread_comments_depth"><?php _e( 'Number of levels for threaded (nested) comments' ); ?></label>
		<?php echo $thread_comments_depth; ?>
	</li>
</ul>
</fieldset></td>
</tr>

<?php $comment_pagination_title = __( 'Comment Pagination' ); ?>
<tr>
<th scope="row"><?php echo $comment_pagination_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $comment_pagination_title; ?></span></legend>
<input name="page_comments" type="checkbox" id="page_comments" value="1" <?php checked( '1', get_option( 'page_comments' ) ); ?> />
<label for="page_comments"><?php _e( 'Break comments into pages' ); ?></label>
<ul>
	<li>
		<label for="comments_per_page"><?php _e( 'Top level comments per page' ); ?></label>
		<input name="comments_per_page" type="number" step="1" min="0" id="comments_per_page" value="<?php echo esc_attr( get_option( 'comments_per_page' ) ); ?>" class="small-text" />
	</li>
	<li>
		<label for="default_comments_page"><?php _e( 'Comments page to display by default' ); ?></label>
		<select name="default_comments_page" id="default_comments_page">
			<option value="newest" <?php selected( 'newest', get_option( 'default_comments_page' ) ); ?>><?php _e( 'last page' ); ?></option>
			<option value="oldest" <?php selected( 'oldest', get_option( 'default_comments_page' ) ); ?>><?php _e( 'first page' ); ?></option>
		</select>
	</li>
	<li>
		<label for="comment_order"><?php _e( 'Comments to display at the top of each page' ); ?></label>
		<select name="comment_order" id="comment_order">
			<option value="asc" <?php selected( 'asc', get_option( 'comment_order' ) ); ?>><?php _e( 'older' ); ?></option>
			<option value="desc" <?php selected( 'desc', get_option( 'comment_order' ) ); ?>><?php _e( 'newer' ); ?></option>
		</select>
	</li>
</ul>
</fieldset></td>
</tr>
<?php $email_me_whenever_title = __( 'Email me whenever' ); ?>
<tr>
<th scope="row"><?php echo $email_me_whenever_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $email_me_whenever_title; ?></span></legend>
<label for="comments_notify">
<input name="comments_notify" type="checkbox" id="comments_notify" value="1" <?php checked( '1', get_option( 'comments_notify' ) ); ?> />
<?php _e( 'Anyone posts a comment' ); ?> </label>
<br />
<label for="moderation_notify">
<input name="moderation_notify" type="checkbox" id="moderation_notify" value="1" <?php checked( '1', get_option( 'moderation_notify' ) ); ?> />
<?php _e( 'A comment is held for moderation' ); ?> </label>
<br />
<label for="wp_notes_notify">
<input name="wp_notes_notify" type="checkbox" id="wp_notes_notify" value="1" <?php checked( '1', get_option( 'wp_notes_notify', 1 ) ); ?> />
<?php _e( 'Anyone posts a note' ); ?> </label>

</fieldset></td>
</tr>
<?php $before_comment_appears_title = __( 'Before a comment appears' ); ?>
<tr>
<th scope="row"><?php echo $before_comment_appears_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $before_comment_appears_title; ?></span></legend>
<label for="comment_moderation">
<input name="comment_moderation" type="checkbox" id="comment_moderation" value="1" <?php checked( '1', get_option( 'comment_moderation' ) ); ?> />
<?php _e( 'Comment must be manually approved' ); ?> </label>
<br />
<label for="comment_previously_approved"><input type="checkbox" name="comment_previously_approved" id="comment_previously_approved" value="1" <?php checked( '1', get_option( 'comment_previously_approved' ) ); ?> /> <?php _e( 'Comment author must have a previously approved comment' ); ?></label>
</fieldset></td>
</tr>
<?php $comment_moderation_title = __( 'Comment Moderation' ); ?>
<tr>
<th scope="row"><?php echo $comment_moderation_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $comment_moderation_title; ?></span></legend>
<p><label for="comment_max_links">
<?php
printf(
	/* translators: %s: Number of links. */
	__( 'Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)' ),
	'<input name="comment_max_links" type="number" step="1" min="0" id="comment_max_links" value="' . esc_attr( get_option( 'comment_max_links' ) ) . '" class="small-text" />'
);
?>
</label></p>

<p><label for="moderation_keys"><?php _e( 'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser&#8217;s user agent string, it will be held in the <a href="edit-comments.php?comment_status=moderated">moderation queue</a>. One word or IP address per line. It will match inside words, so &#8220;press&#8221; will match &#8220;WordPress&#8221;.' ); ?></label></p>
<p>
<textarea name="moderation_keys" rows="10" cols="50" id="moderation_keys" class="large-text code"><?php echo esc_textarea( get_option( 'moderation_keys' ) ); ?></textarea>
</p>
</fieldset></td>
</tr>
<?php $disallowed_comment_keys_title = __( 'Disallowed Comment Keys' ); ?>
<tr>
<th scope="row"><?php echo $disallowed_comment_keys_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $disallowed_comment_keys_title; ?></span></legend>
<p><label for="disallowed_keys"><?php _e( 'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser&#8217;s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so &#8220;press&#8221; will match &#8220;WordPress&#8221;.' ); ?></label></p>
<p>
<textarea name="disallowed_keys" rows="10" cols="50" id="disallowed_keys" class="large-text code"><?php echo esc_textarea( get_option( 'disallowed_keys' ) ); ?></textarea>
</p>
</fieldset></td>
</tr>
<?php do_settings_fields( 'discussion', 'default' ); ?>
</table>

<h2 class="title"><?php _e( 'Avatars' ); ?></h2>

<p><?php _e( 'An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.' ); ?></p>

<?php
// The above would be a good place to link to the documentation on the Gravatar functions, for putting it in themes. Anything like that?

$show_avatars       = get_option( 'show_avatars' );
$show_avatars_class = '';
if ( ! $show_avatars ) {
	$show_avatars_class = ' hide-if-js';
}
?>

<table class="form-table" role="presentation">
<tr>
<th scope="row"><?php _e( 'Avatar Display' ); ?></th>
<td>
	<label for="show_avatars">
		<input type="checkbox" id="show_avatars" name="show_avatars" value="1" <?php checked( $show_avatars, 1 ); ?> />
		<?php _e( 'Show Avatars' ); ?>
	</label>
</td>
</tr>
<?php $maximum_rating_title = __( 'Maximum Rating' ); ?>
<tr class="avatar-settings<?php echo $show_avatars_class; ?>">
<th scope="row"><?php echo $maximum_rating_title; ?></th>
<td><fieldset><legend class="screen-reader-text"><span><?php echo $maximum_rating_title; ?></span></legend>

<?php
$ratings = array(
	/* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
	'G'  => __( 'G &#8212; Suitable for all audiences' ),
	/* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
	'PG' => __( 'PG &#8212; Possibly offensive, usually for audiences 13 and above' ),
	/* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
	'R'  => __( 'R &#8212; Intended for adult audiences above 17' ),
	/* translators: Content suitability rating: https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system */
	'X'  => __( 'X &#8212; Even more mature than above' ),
);
foreach ( $ratings as $key => $rating ) :
	$selected = ( get_option( 'avatar_rating' ) === $key ) ? 'checked="checked"' : '';
	echo "\n\t<label><input type='radio' name='avatar_rating' value='" . esc_attr( $key ) . "' $selected/> $rating</label><br />";
endforeach;
?>

</fieldset></td>
</tr>
<?php $default_avatar_title = __( 'Default Avatar' ); ?>
<tr class="avatar-settings<?php echo $show_avatars_class; ?>">
<th scope="row"><?php echo $default_avatar_title; ?></th>
<td class="defaultavatarpicker"><fieldset><legend class="screen-reader-text"><span><?php echo $default_avatar_title; ?></span></legend>

<p>
<?php _e( 'For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address.' ); ?><br />
</p>

<?php
$avatar_defaults = array(
	'mystery'          => __( 'Mystery Person' ),
	'blank'            => __( 'Blank' ),
	'gravatar_default' => __( 'Gravatar Logo' ),
	'identicon'        => __( 'Identicon (Generated)' ),
	'wavatar'          => __( 'Wavatar (Generated)' ),
	'monsterid'        => __( 'MonsterID (Generated)' ),
	'retro'            => __( 'Retro (Generated)' ),
	'robohash'         => __( 'RoboHash (Generated)' ),
	'initials'         => __( 'Initials (Generated)' ),
	'color'            => __( 'Color (Generated)' ),
);
/**
 * Filters the default avatars.
 *
 * Avatars are stored in key/value pairs, where the key is option value,
 * and the name is the displayed avatar name.
 *
 * @since 2.6.0
 *
 * @param string[] $avatar_defaults Associative array of default avatars.
 */
$avatar_defaults = apply_filters( 'avatar_defaults', $avatar_defaults );
$default         = get_option( 'avatar_default', 'mystery' );
$avatar_list     = '';

// Force avatars on to display these choices.
add_filter( 'pre_option_show_avatars', '__return_true', 100 );

foreach ( $avatar_defaults as $default_key => $default_name ) {
	$selected     = ( $default === $default_key ) ? 'checked="checked" ' : '';
	$avatar_list .= "\n\t<label><input type='radio' name='avatar_default' id='avatar_{$default_key}' value='" . esc_attr( $default_key ) . "' {$selected}/> ";
	$avatar_list .= get_avatar( $user_email, 32, $default_key, '', array( 'force_default' => true ) );
	$avatar_list .= ' ' . $default_name . '</label>';
	$avatar_list .= '<br />';
}

remove_filter( 'pre_option_show_avatars', '__return_true', 100 );

/**
 * Filters the HTML output of the default avatar list.
 *
 * @since 2.6.0
 *
 * @param string $avatar_list HTML markup of the avatar list.
 */
echo apply_filters( 'default_avatar_select', $avatar_list );
?>

</fieldset></td>
</tr>
<?php do_settings_fields( 'discussion', 'avatars' ); ?>
</table>

<?php do_settings_sections( 'discussion' ); ?>

<?php submit_button(); ?>
</form>
</div>

<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
21 Sep 2026 11.07 AM
docteuh / users
0755
application
--
31 Aug 2026 7.21 PM
docteuh / users
0755
composer
--
31 Aug 2026 7.21 PM
docteuh / users
0755
css
--
31 Aug 2026 7.21 PM
docteuh / users
0755
images
--
31 Aug 2026 8.45 PM
docteuh / users
0755
includes
--
31 Aug 2026 1.02 PM
docteuh / users
0755
js
--
31 Aug 2026 7.49 PM
docteuh / users
0755
maint
--
31 Aug 2026 6.14 PM
docteuh / users
0755
network
--
31 Aug 2026 1.02 PM
docteuh / users
0755
polyfill-php70
--
17 Sep 2026 11.40 PM
docteuh / users
0755
user
--
31 Aug 2026 3.18 PM
docteuh / users
0755
-20260826035220-20260826135355.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
-20260826035220-20260827021731.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
-20260826035220-20260827021754.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
-20260826035220-20260828132936.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
-20260826035220.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
-20260826210431.htaccess
0.221 KB
24 Jul 2026 4.02 PM
docteuh / users
0644
.htaccess_260818004710
0.237 KB
18 Aug 2026 2.47 AM
docteuh / users
0644
CNylQxUtV-20260827021753.mp2
5.258 KB
24 Jul 2026 8.52 PM
docteuh / users
0644
about-header-credits-20260828124731.webp
40 KB
21 May 2026 2.34 PM
docteuh / users
0644
about-header-credits.webp
40 KB
21 May 2026 2.34 PM
docteuh / users
0644
about-header-default.webp
19.561 KB
21 May 2026 2.34 PM
docteuh / users
0644
about-header-freedoms-20260828225011.webp
39.93 KB
21 May 2026 2.34 PM
docteuh / users
0644
about-header-freedoms.webp
39.93 KB
21 May 2026 2.34 PM
docteuh / users
0644
about-header-privacy.webp
10.67 KB
21 May 2026 2.34 PM
docteuh / users
0644
about-release-badge.svg
4.144 KB
21 May 2026 2.34 PM
docteuh / users
0644
about.php
16.017 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-ajax.php
5.025 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
admin-footer.php
2.745 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-functions.php
0.468 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin-header.php
9.073 KB
21 May 2026 2.34 PM
docteuh / users
0644
admin-post-20260828192423.php
1.974 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin-post.php
1.974 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
admin.php
12.632 KB
21 May 2026 2.34 PM
docteuh / users
0644
align-center-2x.png
0.144 KB
27 Sep 2012 4.12 AM
docteuh / users
0644
align-left-2x.png
0.14 KB
27 Sep 2012 4.12 AM
docteuh / users
0644
align-none-2x.png
0.118 KB
27 Sep 2012 4.12 AM
docteuh / users
0644
align-right-2x.png
0.139 KB
27 Sep 2012 4.12 AM
docteuh / users
0644
async-upload.php
5.473 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
authorize-application-20260826035009-20260827063216.php
10.093 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
authorize-application-20260826035009.php
10.093 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
authorize-application.php
10.093 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
bubble_bg-2x.gif
0.414 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
bubble_bg.gif
0.389 KB
5 Oct 2019 4.20 PM
docteuh / users
0644
class-custom-background-20260830134824.php
21.197 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-custom-background.php
21.197 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-ftp.php
26.702 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-plugin-upgrader.php
22.704 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-wp-importer.php
7.64 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-wp-screen.php
36.563 KB
21 May 2026 2.34 PM
docteuh / users
0644
class-wp-upgrader.php
47.232 KB
21 May 2026 2.34 PM
docteuh / users
0644
code-editor.min-20260827022210.js
3.46 KB
21 May 2026 2.34 PM
docteuh / users
0644
code-editor.min.js
3.46 KB
21 May 2026 2.34 PM
docteuh / users
0644
comment-20260826035016.php
11.37 KB
21 May 2026 2.34 PM
docteuh / users
0644
comment.php
11.37 KB
21 May 2026 2.34 PM
docteuh / users
0644
common.js
61.266 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute-20260826035022-20260827004029.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute-20260826035022.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute-20260827063006.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
contribute.php
5.857 KB
21 May 2026 2.34 PM
docteuh / users
0644
credits-20260826035029.php
4.378 KB
21 May 2026 2.34 PM
docteuh / users
0644
credits.php
4.378 KB
21 May 2026 2.34 PM
docteuh / users
0644
custom-background.php
0.478 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
custom-header.js
1.976 KB
23 Feb 2021 8.45 PM
docteuh / users
0644
custom-header.php
0.487 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
customize-20260826035049-20260828234920.php
11.207 KB
21 May 2026 2.34 PM
docteuh / users
0644
customize-20260826035049.php
11.207 KB
21 May 2026 2.34 PM
docteuh / users
0644
customize-controls.js
288.413 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
customize-controls.min.js
109.689 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
customize-nav-menus.min.js
47.141 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
customize.php
11.207 KB
21 May 2026 2.34 PM
docteuh / users
0644
dashboard.min.js
8.654 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
date-button-2x.gif
0.973 KB
5 Oct 2019 4.20 PM
docteuh / users
0644
date-button.gif
0.391 KB
5 Oct 2019 4.20 PM
docteuh / users
0644
deprecated.php
40.774 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-20260828174843.php
19.484 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
edit-comments-20260826035056-20260827063116.php
14.145 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-comments-20260826035056-20260830155031.php
14.145 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-comments.min.js
15.151 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-comments.php
14.145 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-advanced.php
28.795 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-blocks.php
14.73 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-comment-20260827052758.php
8.333 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-form-comment.php
8.333 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-link-form-20260828192655.php
6.205 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
edit-link-form.php
6.205 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
edit-tag-form.php
10.415 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit-tags.php
21.982 KB
21 May 2026 2.34 PM
docteuh / users
0644
edit.php
19.484 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
editor-expand.min.js
13.136 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
editor.js
43.999 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
erase-personal-data.php
7.329 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
export-personal-data-20260827082326.php
7.755 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
export-personal-data.php
7.755 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
export.php
11.001 KB
21 May 2026 2.34 PM
docteuh / users
0644
font-library.php
1.012 KB
21 May 2026 2.34 PM
docteuh / users
0644
freedom-3.svg
1.782 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
freedom-4.svg
3.146 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103038-20260829114745.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager-20260827192224-20260829103532-20260829105142.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icons32-2x-20260827033544.png
21.26 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
icons32-2x.png
21.26 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
icons32-vs-2x.png
20.895 KB
25 Nov 2014 7.12 AM
docteuh / users
0644
image-20260828174854.php
44.112 KB
21 May 2026 2.34 PM
docteuh / users
0644
image-edit.min.js
15.151 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
image-edit.php
42.963 KB
21 May 2026 2.34 PM
docteuh / users
0644
image.php
44.112 KB
21 May 2026 2.34 PM
docteuh / users
0644
imgedit-icons-2x.png
7.484 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
import.php
7.584 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
index-20260827063023-20260831194559.php
7.68 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
index-20260827063023.php
7.68 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
index-20260828174848.php
0.057 KB
24 Jul 2026 8.52 PM
docteuh / users
0644
index.php
0.057 KB
24 Jul 2026 8.52 PM
docteuh / users
0644
install-helper.php
6.798 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
install.php
17.907 KB
21 May 2026 2.34 PM
docteuh / users
0644
l10n.css
4.434 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
language-chooser.min.js
0.413 KB
23 Feb 2021 8.45 PM
docteuh / users
0644
link-20260830135026.php
2.888 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
link-add.php
0.912 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
link-manager.php
4.259 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
link-parse-opml.php
2.635 KB
21 May 2026 2.34 PM
docteuh / users
0644
link.php
2.888 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
load-scripts.php
2.021 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
load-styles-20260827104755.php
2.925 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
load-styles.php
2.925 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
marker.png
0.352 KB
13 Feb 2014 9.03 AM
docteuh / users
0644
media-20260828174842-20260831194600.php
117.123 KB
21 May 2026 2.34 PM
docteuh / users
0644
media-20260828174842.php
117.123 KB
21 May 2026 2.34 PM
docteuh / users
0644
media-button-other.gif
0.242 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
media-button.png
0.315 KB
7 Nov 2012 7.49 PM
docteuh / users
0644
media-new.php
3.173 KB
21 May 2026 2.34 PM
docteuh / users
0644
media-upload.js
3.384 KB
22 Jan 2021 1.32 PM
docteuh / users
0644
media-upload.min.js
1.125 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
media-upload.php
3.582 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
media.min.js
2.382 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
media.php
117.123 KB
21 May 2026 2.34 PM
docteuh / users
0644
menu-20260828174845.php
17.716 KB
21 May 2026 2.34 PM
docteuh / users
0644
menu-2x-20260830232126.png
12.375 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
menu-2x.png
12.375 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
menu-header.php
9.823 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
menu-vs-2x.png
12.161 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
menu.php
17.716 KB
21 May 2026 2.34 PM
docteuh / users
0644
misc-20260827104628.php
45.354 KB
21 May 2026 2.34 PM
docteuh / users
0644
misc-20260828174847.php
45.354 KB
21 May 2026 2.34 PM
docteuh / users
0644
misc.php
45.354 KB
21 May 2026 2.34 PM
docteuh / users
0644
moderation.php
0.3 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-admin.php
0.191 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-delete-site.php
4.505 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
ms-edit.php
0.211 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-options-20260827091422.php
0.224 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
ms-options.php
0.224 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
ms-sites.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-themes.php
0.212 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-upgrade-network.php
0.214 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
ms-users.php
0.21 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
my-sites.php
4.718 KB
21 May 2026 2.34 PM
docteuh / users
0644
nav-menus.css
17.657 KB
21 May 2026 2.34 PM
docteuh / users
0644
network.php
5.393 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
no.png
0.737 KB
7 Nov 2012 7.49 PM
docteuh / users
0644
noop-20260828174850.php
1.121 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
noop.php
1.121 KB
8 Nov 2023 3.41 PM
docteuh / users
0644
options-connectors-20260828122616.php
1.07 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-connectors.php
1.07 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-discussion-20260828131611.php
15.915 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-discussion-20260830134603.php
15.915 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-discussion.php
15.915 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-general.php
22.315 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-head.php
0.606 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
options-media.php
6.377 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options-privacy.php
9.925 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-reading-20260827091147-20260828125011.php
9.974 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-reading-20260827091147.php
9.974 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-reading.php
9.974 KB
21 May 2026 2.34 PM
docteuh / users
0644
options-writing.php
9.104 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
options.php
13.932 KB
21 May 2026 2.34 PM
docteuh / users
0644
password-strength-meter-20260828225012.js
4.137 KB
22 Jan 2021 1.32 PM
docteuh / users
0644
password-strength-meter.js
4.137 KB
22 Jan 2021 1.32 PM
docteuh / users
0644
password-strength-meter.min-20260828125854.js
1.097 KB
22 Jan 2021 1.32 PM
docteuh / users
0644
password-strength-meter.min.js
1.097 KB
22 Jan 2021 1.32 PM
docteuh / users
0644
plugin-editor.php
13.752 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
plugin-install-20260830134547.php
6.957 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
plugin-install.js
6.92 KB
18 Mar 2021 8.01 PM
docteuh / users
0644
plugin-install.php
6.957 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
plugins-20260827111509.php
30.004 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
plugins.php
30.004 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
post-20260828174857.php
10.033 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
post-formats32-vs.png
4.991 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
post-new.php
2.703 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
post.php
10.033 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
postbox-20260826222252.js
18.493 KB
16 Apr 2025 11.58 AM
docteuh / users
0644
press-this-20260827062436.php
2.412 KB
21 May 2026 2.34 PM
docteuh / users
0644
press-this.php
2.412 KB
21 May 2026 2.34 PM
docteuh / users
0644
privacy-policy-guide.php
3.668 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
privacy-tools.min.js
5.033 KB
17 Jul 2024 6.30 AM
docteuh / users
0644
privacy-tools.php
32.657 KB
21 May 2026 2.34 PM
docteuh / users
0644
privacy.php
2.787 KB
21 May 2026 2.34 PM
docteuh / users
0644
privacy.svg
0.9 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
profile.php
0.276 KB
6 Feb 2020 7.33 AM
docteuh / users
0644
resize-rtl-2x.gif
0.146 KB
16 Nov 2021 1.04 AM
docteuh / users
0644
revision.php
5.699 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
robots.txt
0.381 KB
18 Aug 2024 3.34 AM
docteuh / users
0644
schema.php
44.515 KB
21 May 2026 2.34 PM
docteuh / users
0644
screen.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
setup-config.php
17.524 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-editor.php
12.072 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health-info-20260827054932.php
4.053 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health-info.php
4.053 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health.min.js
6.322 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-health.php
10.177 KB
21 May 2026 2.34 PM
docteuh / users
0644
site-icon.js
6.097 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
spinner-20260827101050.gif
3.57 KB
16 Nov 2021 1.04 AM
docteuh / users
0644
spinner-2x.gif
7.359 KB
16 Nov 2021 1.04 AM
docteuh / users
0644
spinner.gif
3.57 KB
16 Nov 2021 1.04 AM
docteuh / users
0644
svg-painter.js
3.203 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
svg-painter.min.js
1.53 KB
14 Nov 2024 5.53 AM
docteuh / users
0644
taxonomy-20260830135114.php
8.284 KB
21 May 2026 2.34 PM
docteuh / users
0644
taxonomy.php
8.284 KB
21 May 2026 2.34 PM
docteuh / users
0644
template-20260830135114.php
97.348 KB
21 May 2026 2.34 PM
docteuh / users
0644
template.php
97.348 KB
21 May 2026 2.34 PM
docteuh / users
0644
term-20260830135027.php
2.196 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
term.php
2.196 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
theme-editor.php
16.874 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
theme-install-20260830134546.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-install.php
23.552 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-plugin-editor.js
25.563 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-plugin-editor.min-20260828230910.js
11.82 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme-plugin-editor.min.js
11.82 KB
21 May 2026 2.34 PM
docteuh / users
0644
theme.min.js
26.506 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
themes-20260827063017.php
47.925 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
themes.php
47.925 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
tools.php
3.432 KB
5 Jun 2023 6.18 PM
docteuh / users
0644
update-core.php
45.119 KB
21 May 2026 2.34 PM
docteuh / users
0644
update.php
12.756 KB
21 May 2026 2.34 PM
docteuh / users
0644
upgrade-20260827025904-20260827100820.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
upgrade-20260827025904.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
upgrade.php
6.24 KB
21 May 2026 2.34 PM
docteuh / users
0644
upload.php
14.899 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-new.php
24.062 KB
21 May 2026 2.34 PM
docteuh / users
0644
user-suggest.js
2.247 KB
18 Mar 2021 8.01 PM
docteuh / users
0644
user-suggest.min.js
0.66 KB
18 Mar 2021 8.01 PM
docteuh / users
0644
user.php
23.389 KB
21 May 2026 2.34 PM
docteuh / users
0644
users.php
23.439 KB
21 May 2026 2.34 PM
docteuh / users
0644
w-logo-blue.png
3.04 KB
21 May 2020 11.10 AM
docteuh / users
0644
wheel.png
5.905 KB
28 Oct 2014 11.02 PM
docteuh / users
0644
widgets-form-blocks.php
5.119 KB
3 Dec 2025 3.48 PM
docteuh / users
0644
widgets-form.php
19.136 KB
21 May 2026 2.34 PM
docteuh / users
0644
widgets.php
10.299 KB
21 May 2026 2.34 PM
docteuh / users
0644
wp-activate.php
7.198 KB
21 May 2026 2.34 PM
docteuh / users
0644
wpspin_light-2x.gif
8.667 KB
3 Apr 2024 10.45 AM
docteuh / users
0644
xfn.js
0.723 KB
18 Mar 2021 8.01 PM
docteuh / users
0644
xit-2x.gif
0.806 KB
5 Oct 2019 4.20 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF