$27 GRAYBYTE WORDPRESS FILE MANAGER $93

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bqrcodec/test1.proid.vn/wp-includes/blocks/

HOME
Current File : /home/bqrcodec/test1.proid.vn/wp-includes/blocks//latest-comments.php
<?php
/**
 * Server-side rendering of the `core/latest-comments` block.
 *
 * @package WordPress
 */

/**
 * Get the post title.
 *
 * The post title is fetched and if it is blank then a default string is
 * returned.
 *
 * Copied from `wp-admin/includes/template.php`, but we can't include that
 * file because:
 *
 * 1. It causes bugs with test fixture generation and strange Docker 255 error
 *    codes.
 * 2. It's in the admin; ideally we *shouldn't* be including files from the
 *    admin for a block's output. It's a very small/simple function as well,
 *    so duplicating it isn't too terrible.
 *
 * @since 3.3.0
 *
 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post.
 * @return string The post title if set; "(no title)" if no title is set.
 */
function wp_latest_comments_draft_or_post_title( $post = 0 ) {
	$title = get_the_title( $post );
	if ( empty( $title ) ) {
		$title = __( '(no title)' );
	}
	return $title;
}

/**
 * Renders the `core/latest-comments` block on server.
 *
 * @since 5.1.0
 *
 * @param array $attributes The block attributes.
 *
 * @return string Returns the post content with latest comments added.
 */
function render_block_core_latest_comments( $attributes ) {
	$comments = get_comments(
		/** This filter is documented in wp-includes/widgets/class-wp-widget-recent-comments.php */
		apply_filters(
			'widget_comments_args',
			array(
				'number'      => $attributes['commentsToShow'],
				'status'      => 'approve',
				'post_status' => 'publish',
			),
			array()
		)
	);

	$list_items_markup = '';
	if ( ! empty( $comments ) ) {
		// Prime the cache for associated posts. This is copied from \WP_Widget_Recent_Comments::widget().
		$post_ids = array_unique( wp_list_pluck( $comments, 'comment_post_ID' ) );
		_prime_post_caches( $post_ids, strpos( get_option( 'permalink_structure' ), '%category%' ), false );

		foreach ( $comments as $comment ) {
			$list_items_markup .= '<li class="wp-block-latest-comments__comment">';
			if ( $attributes['displayAvatar'] ) {
				$avatar = get_avatar(
					$comment,
					48,
					'',
					'',
					array(
						'class' => 'wp-block-latest-comments__comment-avatar',
					)
				);
				if ( $avatar ) {
					$list_items_markup .= $avatar;
				}
			}

			$list_items_markup .= '<article>';
			$list_items_markup .= '<footer class="wp-block-latest-comments__comment-meta">';
			$author_url         = get_comment_author_url( $comment );
			if ( empty( $author_url ) && ! empty( $comment->user_id ) ) {
				$author_url = get_author_posts_url( $comment->user_id );
			}

			$author_markup = '';
			if ( $author_url ) {
				$author_markup .= '<a class="wp-block-latest-comments__comment-author" href="' . esc_url( $author_url ) . '">' . get_comment_author( $comment ) . '</a>';
			} else {
				$author_markup .= '<span class="wp-block-latest-comments__comment-author">' . get_comment_author( $comment ) . '</span>';
			}

			// `_draft_or_post_title` calls `esc_html()` so we don't need to wrap that call in
			// `esc_html`.
			$post_title = '<a class="wp-block-latest-comments__comment-link" href="' . esc_url( get_comment_link( $comment ) ) . '">' . wp_latest_comments_draft_or_post_title( $comment->comment_post_ID ) . '</a>';

			$list_items_markup .= sprintf(
				/* translators: 1: author name (inside <a> or <span> tag, based on if they have a URL), 2: post title related to this comment */
				__( '%1$s on %2$s' ),
				$author_markup,
				$post_title
			);

			if ( $attributes['displayDate'] ) {
				$list_items_markup .= sprintf(
					'<time datetime="%1$s" class="wp-block-latest-comments__comment-date">%2$s</time>',
					esc_attr( get_comment_date( 'c', $comment ) ),
					date_i18n( get_option( 'date_format' ), get_comment_date( 'U', $comment ) )
				);
			}
			$list_items_markup .= '</footer>';
			if ( $attributes['displayExcerpt'] ) {
				$list_items_markup .= '<div class="wp-block-latest-comments__comment-excerpt">' . wpautop( get_comment_excerpt( $comment ) ) . '</div>';
			}
			$list_items_markup .= '</article></li>';
		}
	}

	$classnames = array();
	if ( $attributes['displayAvatar'] ) {
		$classnames[] = 'has-avatars';
	}
	if ( $attributes['displayDate'] ) {
		$classnames[] = 'has-dates';
	}
	if ( $attributes['displayExcerpt'] ) {
		$classnames[] = 'has-excerpts';
	}
	if ( empty( $comments ) ) {
		$classnames[] = 'no-comments';
	}
	$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classnames ) ) );

	return ! empty( $comments ) ? sprintf(
		'<ol %1$s>%2$s</ol>',
		$wrapper_attributes,
		$list_items_markup
	) : sprintf(
		'<div %1$s>%2$s</div>',
		$wrapper_attributes,
		__( 'No comments to show.' )
	);
}

/**
 * Registers the `core/latest-comments` block.
 *
 * @since 5.3.0
 */
function register_block_core_latest_comments() {
	register_block_type_from_metadata(
		__DIR__ . '/latest-comments',
		array(
			'render_callback' => 'render_block_core_latest_comments',
		)
	);
}

add_action( 'init', 'register_block_core_latest_comments' );

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
accordion
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
accordion-heading
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
accordion-item
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
accordion-panel
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
archives
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
audio
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
avatar
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
block
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
button
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
buttons
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
calendar
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
categories
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
code
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
column
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
columns
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comment-author-name
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comment-content
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comment-date
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comment-edit-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comment-reply-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comment-template
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comments
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comments-pagination
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comments-pagination-next
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comments-pagination-numbers
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comments-pagination-previous
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
comments-title
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
cover
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
details
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
embed
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
file
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
footnotes
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
freeform
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
gallery
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
group
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
heading
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
home-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
html
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
image
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
latest-comments
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
latest-posts
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
legacy-widget
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
list
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
list-item
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
loginout
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
math
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
media-text
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
missing
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
more
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
navigation
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
navigation-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
navigation-submenu
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
nextpage
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
page-list
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
page-list-item
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
paragraph
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
pattern
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-author
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-author-biography
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-author-name
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-comments-count
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-comments-form
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-comments-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-content
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-date
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-excerpt
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-featured-image
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-navigation-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-template
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-terms
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-time-to-read
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
post-title
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
preformatted
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
pullquote
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-no-results
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-pagination
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-pagination-next
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-pagination-numbers
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-pagination-previous
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-title
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
query-total
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
quote
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
read-more
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
rss
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
search
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
separator
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
shortcode
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
site-logo
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
site-tagline
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
site-title
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
social-link
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
social-links
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
spacer
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
table
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
tag-cloud
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
template-part
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
term-count
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
term-description
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
term-name
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
term-template
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
terms-query
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
text-columns
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
verse
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
video
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
widget-group
--
18 Mar 2026 5.12 PM
bqrcodec / bqrcodec
0755
accordion-item.php
2.354 KB
25 Nov 2025 1.14 PM
bqrcodec / bqrcodec
0644
accordion.php
1.12 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
archives.php
4.312 KB
4 Nov 2025 12.36 PM
bqrcodec / bqrcodec
0644
avatar.php
5.61 KB
31 Oct 2024 4.09 AM
bqrcodec / bqrcodec
0644
block.php
4.088 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
blocks-json.php
213.431 KB
29 Jan 2026 11.37 PM
bqrcodec / bqrcodec
0644
button.php
1.711 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
calendar.php
5.933 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
categories.php
4.541 KB
4 Nov 2025 12.36 PM
bqrcodec / bqrcodec
0644
comment-author-name.php
2.083 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comment-content.php
2.401 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comment-date.php
1.819 KB
20 Sep 2024 1.55 AM
bqrcodec / bqrcodec
0644
comment-edit-link.php
1.673 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comment-reply-link.php
2.026 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comment-template.php
4.389 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comments-pagination-next.php
1.879 KB
20 Sep 2024 1.55 AM
bqrcodec / bqrcodec
0644
comments-pagination-numbers.php
1.594 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comments-pagination-previous.php
1.748 KB
20 Sep 2024 1.55 AM
bqrcodec / bqrcodec
0644
comments-pagination.php
1.231 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
comments-title.php
2.707 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
comments.php
6.625 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
cover.php
3.101 KB
7 Feb 2025 3.46 PM
bqrcodec / bqrcodec
0644
file.php
1.835 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
footnotes.php
3.683 KB
27 Feb 2024 2.48 PM
bqrcodec / bqrcodec
0644
gallery.php
6.288 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
heading.php
1.271 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
home-link.php
5.311 KB
7 Feb 2025 3.46 PM
bqrcodec / bqrcodec
0644
image.php
13.5 KB
28 Oct 2025 12.26 PM
bqrcodec / bqrcodec
0644
index.php
4.991 KB
3 Oct 2024 12.25 AM
bqrcodec / bqrcodec
0644
latest-comments.php
4.912 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
latest-posts.php
8.529 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
legacy-widget.php
3.917 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
list.php
1.243 KB
23 May 2024 7.56 PM
bqrcodec / bqrcodec
0644
loginout.php
1.625 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
media-text.php
4.28 KB
20 Sep 2024 2.07 AM
bqrcodec / bqrcodec
0644
navigation-link.php
13.634 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
navigation-submenu.php
9.742 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
navigation.php
48.389 KB
28 Oct 2025 12.26 PM
bqrcodec / bqrcodec
0644
page-list-item.php
0.353 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
page-list.php
13.292 KB
20 Sep 2024 1.55 AM
bqrcodec / bqrcodec
0644
pattern.php
1.746 KB
7 Feb 2025 3.46 PM
bqrcodec / bqrcodec
0644
post-author-biography.php
1.488 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
post-author-name.php
1.905 KB
28 Apr 2025 9.52 PM
bqrcodec / bqrcodec
0644
post-author.php
2.67 KB
28 Apr 2025 9.52 PM
bqrcodec / bqrcodec
0644
post-comments-count.php
1.245 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-comments-form.php
2.739 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
post-comments-link.php
2.185 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-content.php
2.292 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-date.php
3.547 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-excerpt.php
3.527 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-featured-image.php
9.144 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-navigation-link.php
4.724 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
post-template.php
5.614 KB
23 Sep 2024 6.52 AM
bqrcodec / bqrcodec
0644
post-terms.php
3.555 KB
7 Feb 2025 3.46 PM
bqrcodec / bqrcodec
0644
post-time-to-read.php
6.341 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
post-title.php
2.088 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
query-no-results.php
1.804 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
query-pagination-next.php
3.692 KB
28 Oct 2025 12.26 PM
bqrcodec / bqrcodec
0644
query-pagination-numbers.php
4.658 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
query-pagination-previous.php
3.494 KB
28 Oct 2025 12.26 PM
bqrcodec / bqrcodec
0644
query-pagination.php
1.148 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
query-title.php
2.874 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
query-total.php
2.476 KB
25 Mar 2025 12.54 PM
bqrcodec / bqrcodec
0644
query.php
5.557 KB
7 Feb 2025 3.46 PM
bqrcodec / bqrcodec
0644
read-more.php
1.787 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
require-dynamic-blocks.php
4.59 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
require-static-blocks.php
0.545 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
rss.php
4.501 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
search.php
23.259 KB
28 Oct 2025 12.26 PM
bqrcodec / bqrcodec
0644
shortcode.php
0.718 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
site-logo.php
6.186 KB
20 Sep 2024 1.55 AM
bqrcodec / bqrcodec
0644
site-tagline.php
1.175 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644
site-title.php
1.82 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
social-link.php
66.147 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
tag-cloud.php
1.553 KB
20 Sep 2024 1.55 AM
bqrcodec / bqrcodec
0644
template-part.php
9.916 KB
3 Mar 2025 6.08 PM
bqrcodec / bqrcodec
0644
term-count.php
1.8 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
term-description.php
1.729 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
term-name.php
2.021 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
term-template.php
4.412 KB
29 Jan 2026 11.37 PM
bqrcodec / bqrcodec
0644
video.php
2.669 KB
21 Oct 2025 7.14 AM
bqrcodec / bqrcodec
0644
widget-group.php
2.381 KB
23 May 2024 7.39 PM
bqrcodec / bqrcodec
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF