✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/blackpussy06/public_html/broadweb.com.tw/wp-admin/includes//comment.php
<?php
/**
 * WordPress Comment Administration API.
 *
 * @package WordPress
 * @subpackage Administration
 * @since 2.3.0
 */

/**
 * Determines if a comment exists based on author and date.
 *
 * For best performance, use `$timezone = 'gmt'`, which queries a field that is properly indexed. The default value
 * for `$timezone` is 'blog' for legacy reasons.
 *
 * @since 2.0.0
 * @since 4.4.0 Added the `$timezone` parameter.
 *
 * @global wpdb $wpdb WordPress database abstraction object.
 *
 * @param string $comment_author Author of the comment.
 * @param string $comment_date   Date of the comment.
 * @param string $timezone       Timezone. Accepts 'blog' or 'gmt'. Default 'blog'.
 * @return string|null Comment post ID on success.
 */
function comment_exists( $comment_author, $comment_date, $timezone = 'blog' ) {
	global $wpdb;

	$date_field = 'comment_date';
	if ( 'gmt' === $timezone ) {
		$date_field = 'comment_date_gmt';
	}

	return $wpdb->get_var(
		$wpdb->prepare(
			"SELECT comment_post_ID FROM $wpdb->comments
			WHERE comment_author = %s AND $date_field = %s",
			stripslashes( $comment_author ),
			stripslashes( $comment_date )
		)
	);
}

/**
 * Updates a comment with values provided in $_POST.
 *
 * @since 2.0.0
 * @since 5.5.0 A return value was added.
 * @since 7.1.0 The comment parent can be updated via `$_POST['comment_parent']`.
 *
 * @return int|WP_Error The value 1 if the comment was updated, 0 if not updated.
 *                      A WP_Error object on failure.
 */
function edit_comment() {
	if ( ! current_user_can( 'edit_comment', (int) $_POST['comment_ID'] ) ) {
		wp_die( __( 'Sorry, you are not allowed to edit comments on this post.' ) );
	}

	if ( isset( $_POST['newcomment_author'] ) ) {
		$_POST['comment_author'] = $_POST['newcomment_author'];
	}
	if ( isset( $_POST['newcomment_author_email'] ) ) {
		$_POST['comment_author_email'] = $_POST['newcomment_author_email'];
	}
	if ( isset( $_POST['newcomment_author_url'] ) ) {
		$_POST['comment_author_url'] = $_POST['newcomment_author_url'];
	}
	if ( isset( $_POST['comment_status'] ) ) {
		$_POST['comment_approved'] = $_POST['comment_status'];
	}
	if ( isset( $_POST['content'] ) ) {
		$_POST['comment_content'] = $_POST['content'];
	}
	if ( isset( $_POST['comment_ID'] ) ) {
		$_POST['comment_ID'] = (int) $_POST['comment_ID'];
	}

	if ( isset( $_POST['comment_parent'] ) ) {
		$comment_id     = (int) $_POST['comment_ID'];
		$comment_parent = (int) $_POST['comment_parent'];

		$_POST['comment_parent'] = $comment_parent;

		$comment = get_comment( $comment_id );

		if ( $comment && $comment_parent && $comment_parent !== (int) $comment->comment_parent ) {
			if ( ! get_option( 'thread_comments' ) ) {
				return new WP_Error( 'comment_parent_invalid', __( 'The comment parent cannot be changed because threaded comments are disabled.' ) );
			}

			if ( $comment_parent === $comment_id ) {
				return new WP_Error( 'comment_parent_invalid', __( 'A comment cannot be a reply to itself.' ) );
			}

			$parent              = get_comment( $comment_parent );
			$parent_status       = $parent ? wp_get_comment_status( $parent ) : false;
			$comment_status      = $_POST['comment_approved'] ?? $comment->comment_approved;
			$comment_is_approved = in_array( $comment_status, array( 1, '1', 'approve' ), true );

			// The parent must be a comment of the same type, on the same post, and publicly visible if the comment is approved.
			if (
				! $parent
				|| (int) $parent->comment_post_ID !== (int) $comment->comment_post_ID
				|| $parent->comment_type !== $comment->comment_type
				|| in_array( $parent_status, array( 'spam', 'trash' ), true )
				|| ( $comment_is_approved && 'approved' !== $parent_status )
			) {
				return new WP_Error( 'comment_parent_invalid', __( 'Invalid parent comment.' ) );
			}

			// Walk up the new parent's ancestors to prevent creating a threading loop.
			$ancestors    = array();
			$ancestor     = $parent;
			$parent_depth = 1;

			while ( $ancestor && $ancestor->comment_parent && ! isset( $ancestors[ $ancestor->comment_ID ] ) ) {
				if ( (int) $ancestor->comment_parent === $comment_id ) {
					return new WP_Error( 'comment_parent_invalid', __( 'A comment cannot be a reply to one of its own replies.' ) );
				}

				$ancestors[ $ancestor->comment_ID ] = true;
				++$parent_depth;

				$ancestor = get_comment( $ancestor->comment_parent );
			}

			$max_thread_depth = (int) get_option( 'thread_comments_depth' );

			if ( $max_thread_depth ) {
				/*
				 * The comment's replies move with it, so the whole subtree must stay within
				 * the maximum depth. Measure its height one level of replies at a time,
				 * stopping as soon as the subtree cannot fit, which also bounds the loop
				 * should the stored comment hierarchy contain a cycle.
				 */
				$subtree_height = 1;
				$level_ids      = array( $comment_id );

				while ( $level_ids && $parent_depth + $subtree_height <= $max_thread_depth ) {
					$level_ids = get_comments(
						array(
							'parent__in' => $level_ids,
							'fields'     => 'ids',
							'status'     => 'any',
							'orderby'    => 'none',
						)
					);

					if ( $level_ids ) {
						++$subtree_height;
					}
				}

				if ( $parent_depth + $subtree_height > $max_thread_depth ) {
					return new WP_Error( 'comment_parent_invalid', __( 'The comment cannot be moved there because it or its replies would exceed the maximum threading depth.' ) );
				}
			}
		}
	}

	foreach ( array( 'aa', 'mm', 'jj', 'hh', 'mn' ) as $timeunit ) {
		if ( ! empty( $_POST[ 'hidden_' . $timeunit ] ) && $_POST[ 'hidden_' . $timeunit ] !== $_POST[ $timeunit ] ) {
			$_POST['edit_date'] = '1';
			break;
		}
	}

	if ( ! empty( $_POST['edit_date'] ) ) {
		$aa = $_POST['aa'];
		$mm = $_POST['mm'];
		$jj = $_POST['jj'];
		$hh = $_POST['hh'];
		$mn = $_POST['mn'];
		$ss = $_POST['ss'];
		$jj = ( $jj > 31 ) ? 31 : $jj;
		$hh = ( $hh > 23 ) ? $hh - 24 : $hh;
		$mn = ( $mn > 59 ) ? $mn - 60 : $mn;
		$ss = ( $ss > 59 ) ? $ss - 60 : $ss;

		$_POST['comment_date'] = "$aa-$mm-$jj $hh:$mn:$ss";
	}

	return wp_update_comment( $_POST, true );
}

/**
 * Returns a WP_Comment object based on comment ID.
 *
 * @since 2.0.0
 *
 * @param int $id ID of comment to retrieve.
 * @return WP_Comment|false Comment if found. False on failure.
 */
function get_comment_to_edit( $id ) {
	$comment = get_comment( $id );
	if ( ! $comment ) {
		return false;
	}

	$comment->comment_ID      = (int) $comment->comment_ID;
	$comment->comment_post_ID = (int) $comment->comment_post_ID;

	$comment->comment_content = format_to_edit( $comment->comment_content );
	/**
	 * Filters the comment content before editing.
	 *
	 * @since 2.0.0
	 *
	 * @param string $comment_content Comment content.
	 */
	$comment->comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content );

	$comment->comment_author       = format_to_edit( $comment->comment_author );
	$comment->comment_author_email = format_to_edit( $comment->comment_author_email );
	$comment->comment_author_url   = format_to_edit( $comment->comment_author_url );
	$comment->comment_author_url   = esc_url( $comment->comment_author_url );

	return $comment;
}

/**
 * Gets the number of pending comments on a post or posts.
 *
 * @since 2.3.0
 * @since 6.9.0 Exclude the 'note' comment type from the count.
 *
 * @global wpdb $wpdb WordPress database abstraction object.
 *
 * @param int|int[] $post_id Either a single Post ID or an array of Post IDs
 * @return int|int[] Either a single Posts pending comments as an int or an array of ints keyed on the Post IDs
 */
function get_pending_comments_num( $post_id ) {
	global $wpdb;

	$single = false;
	if ( ! is_array( $post_id ) ) {
		$post_id_array = (array) $post_id;
		$single        = true;
	} else {
		$post_id_array = $post_id;
	}
	$post_id_array = array_map( 'intval', $post_id_array );
	$post_id_in    = "'" . implode( "', '", $post_id_array ) . "'";

	$pending = $wpdb->get_results( "SELECT comment_post_ID, COUNT(comment_ID) as num_comments FROM $wpdb->comments WHERE comment_post_ID IN ( $post_id_in ) AND comment_approved = '0' AND comment_type != 'note' GROUP BY comment_post_ID", ARRAY_A );

	if ( $single ) {
		if ( empty( $pending ) ) {
			return 0;
		} else {
			return absint( $pending[0]['num_comments'] );
		}
	}

	$pending_keyed = array();

	// Default to zero pending for all posts in request.
	foreach ( $post_id_array as $id ) {
		$pending_keyed[ $id ] = 0;
	}

	if ( ! empty( $pending ) ) {
		foreach ( $pending as $pend ) {
			$pending_keyed[ $pend['comment_post_ID'] ] = absint( $pend['num_comments'] );
		}
	}

	return $pending_keyed;
}

/**
 * Adds avatars to relevant places in admin.
 *
 * @since 2.5.0
 *
 * @param string $name User name.
 * @return string Avatar with the user name.
 */
function floated_admin_avatar( $name ) {
	$avatar = get_avatar( get_comment(), 32, 'mystery' );
	return "$avatar $name";
}

/**
 * Enqueues comment shortcuts jQuery script.
 *
 * @since 2.7.0
 */
function enqueue_comment_hotkeys_js() {
	if ( 'true' === get_user_option( 'comment_shortcuts' ) ) {
		wp_enqueue_script( 'jquery-table-hotkeys' );
	}
}

/**
 * Displays error message at bottom of comments.
 *
 * @since 2.5.0
 *
 * @param string $msg Error Message. Assumed to contain HTML and be sanitized.
 * @return never
 */
function comment_footer_die( $msg ) {
	echo "<div class='wrap'><p>$msg</p></div>";
	require_once ABSPATH . 'wp-admin/admin-footer.php';
	die;
}

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

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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0755
admin-filters.php
7.846 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
admin.php
3.543 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
ajax-actions.php
149.941 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
bookmark.php
11.404 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-automatic-upgrader-skin.php
3.577 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-bulk-plugin-upgrader-skin.php
2.529 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-bulk-theme-upgrader-skin.php
2.598 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-bulk-upgrader-skin.php
6.505 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-core-upgrader.php
14.842 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-custom-background.php
21.24 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-custom-image-header.php
48.095 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-file-upload-upgrader.php
4.065 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-ftp-pure.php
5.299 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-ftp-sockets.php
8.28 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-ftp.php
26.701 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-language-pack-upgrader-skin.php
2.803 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-language-pack-upgrader.php
15.164 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-pclzip.php
192.058 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-plugin-installer-skin.php
11.667 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-plugin-upgrader-skin.php
3.201 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-plugin-upgrader.php
22.704 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-theme-installer-skin.php
12.67 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-theme-upgrader-skin.php
4.078 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-theme-upgrader.php
26.155 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-walker-category-checklist.php
4.973 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-walker-nav-menu-checklist.php
5.646 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-walker-nav-menu-edit.php
13.963 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-wp-ajax-upgrader-skin.php
4.095 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-wp-application-passwords-list-table.php
6.786 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-wp-automatic-updater.php
60.454 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-comments-list-table.php
33.809 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-community-events.php
18.21 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-wp-debug-data.php
69.378 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-filesystem-base.php
25.021 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-filesystem-direct.php
18.717 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-filesystem-ftpext.php
24.342 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-filesystem-ftpsockets.php
19.879 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-filesystem-ssh2.php
25.21 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-importer.php
8.085 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-internal-pointers.php
4.485 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-wp-links-list-table.php
9.866 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-list-table-compat.php
1.462 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-wp-list-table.php
53.587 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-media-list-table.php
27.135 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-ms-sites-list-table.php
23.045 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-ms-themes-list-table.php
29.557 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-ms-users-list-table.php
15.809 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-plugin-install-list-table.php
24.488 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-plugins-list-table.php
60.106 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-post-comments-list-table.php
1.419 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-wp-posts-list-table.php
66.853 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-privacy-data-export-requests-list-table.php
5.885 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-privacy-data-removal-requests-list-table.php
6.033 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-privacy-policy-content.php
32.247 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-privacy-requests-table.php
14.459 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-screen.php
36.686 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-site-health-auto-updates.php
14.001 KB
21 Jan 2026 7.37 PM
blackpussy06 / blackpussy06
0644
class-wp-site-health.php
128.094 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-site-icon.php
6.337 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-terms-list-table.php
21.078 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-theme-install-list-table.php
15.335 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-wp-themes-list-table.php
10.097 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-wp-upgrader-skin.php
6.898 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
class-wp-upgrader-skins.php
1.442 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
class-wp-upgrader.php
47.233 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
class-wp-users-list-table.php
18.897 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
comment.php
9.235 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
continents-cities.php
20.059 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
credits.php
5.695 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
dashboard.php
68.961 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
deprecated.php
40.977 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
edit-tag-messages.php
1.443 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
error_log
634.949 KB
9 Sep 2026 3.15 PM
blackpussy06 / blackpussy06
0644
export.php
25.367 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
file.php
96.117 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
image-edit.php
43.112 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
image.php
44.113 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
import.php
6.462 KB
21 Jan 2026 7.37 PM
blackpussy06 / blackpussy06
0644
list-table.php
3.713 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
media.php
117.371 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
menu.php
9.414 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
meta-boxes.php
65.29 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
misc.php
45.354 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
ms-admin-filters.php
1.266 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
ms-deprecated.php
3.682 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
ms.php
35.116 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
nav-menu.php
47.984 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
network.php
26.404 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
noop.php
1.121 KB
21 Jan 2026 6.09 PM
blackpussy06 / blackpussy06
0644
options.php
4.202 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
plugin-install.php
38.269 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
plugin.php
91.108 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
post.php
80.302 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
privacy-tools.php
32.941 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
revision.php
16.239 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
schema.php
44.515 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
screen.php
6.24 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
taxonomy.php
8.284 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
template.php
97.49 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
theme-install.php
6.846 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
theme.php
46.419 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644
translation-install.php
10.789 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
update-core.php
84.123 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
update.php
34.013 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
upgrade.php
113.939 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
user.php
23.353 KB
20 Aug 2026 7.18 AM
blackpussy06 / blackpussy06
0644
widgets.php
10.299 KB
20 May 2026 7.18 PM
blackpussy06 / blackpussy06
0644

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