$36 GRAYBYTE WORDPRESS FILE MANAGER $98

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/contact.malloca.com/wp-includes/blocks/

HOME
Current File : /home/bqrcodec/contact.malloca.com/wp-includes/blocks//post-navigation-link.php
<?php
/**
 * Server-side rendering of the `core/post-navigation-link` block.
 *
 * @package WordPress
 */

/**
 * Renders the `core/post-navigation-link` block on the server.
 *
 * @since 5.9.0
 *
 * @param array  $attributes Block attributes.
 * @param string $content    Block default content.
 *
 * @return string Returns the next or previous post link that is adjacent to the current post.
 */
function render_block_core_post_navigation_link( $attributes, $content ) {
	if ( ! is_singular() ) {
		return '';
	}

	// Get the navigation type to show the proper link. Available options are `next|previous`.
	$navigation_type = isset( $attributes['type'] ) ? $attributes['type'] : 'next';
	// Allow only `next` and `previous` in `$navigation_type`.
	if ( ! in_array( $navigation_type, array( 'next', 'previous' ), true ) ) {
		return '';
	}
	$classes = "post-navigation-link-$navigation_type";
	if ( isset( $attributes['textAlign'] ) ) {
		$classes .= " has-text-align-{$attributes['textAlign']}";
	}
	$wrapper_attributes = get_block_wrapper_attributes(
		array(
			'class' => $classes,
		)
	);
	// Set default values.
	$format = '%link';
	$link   = 'next' === $navigation_type ? _x( 'Next', 'label for next post link' ) : _x( 'Previous', 'label for previous post link' );
	$label  = '';

	// Only use hardcoded values here, otherwise we need to add escaping where these values are used.
	$arrow_map = array(
		'none'    => '',
		'arrow'   => array(
			'next'     => '→',
			'previous' => '←',
		),
		'chevron' => array(
			'next'     => '»',
			'previous' => '«',
		),
	);

	// If a custom label is provided, make this a link.
	// `$label` is used to prepend the provided label, if we want to show the page title as well.
	if ( isset( $attributes['label'] ) && ! empty( $attributes['label'] ) ) {
		$label = "{$attributes['label']}";
		$link  = $label;
	}

	// If we want to also show the page title, make the page title a link and prepend the label.
	if ( isset( $attributes['showTitle'] ) && $attributes['showTitle'] ) {
		/*
		 * If the label link option is not enabled but there is a custom label,
		 * display the custom label as text before the linked title.
		 */
		if ( ! $attributes['linkLabel'] ) {
			if ( $label ) {
				$format = '<span class="post-navigation-link__label">' . wp_kses_post( $label ) . '</span> %link';
			}
			$link = '%title';
		} elseif ( isset( $attributes['linkLabel'] ) && $attributes['linkLabel'] ) {
			// If the label link option is enabled and there is a custom label, display it before the title.
			if ( $label ) {
				$link = '<span class="post-navigation-link__label">' . wp_kses_post( $label ) . '</span> <span class="post-navigation-link__title">%title</span>';
			} else {
				/*
				 * If the label link option is enabled and there is no custom label,
				 * add a colon between the label and the post title.
				 */
				$label = 'next' === $navigation_type ? _x( 'Next:', 'label before the title of the next post' ) : _x( 'Previous:', 'label before the title of the previous post' );
				$link  = sprintf(
					'<span class="post-navigation-link__label">%1$s</span> <span class="post-navigation-link__title">%2$s</span>',
					wp_kses_post( $label ),
					'%title'
				);
			}
		}
	}

	// Display arrows.
	if ( isset( $attributes['arrow'] ) && 'none' !== $attributes['arrow'] && isset( $arrow_map[ $attributes['arrow'] ] ) ) {
		$arrow = $arrow_map[ $attributes['arrow'] ][ $navigation_type ];

		if ( 'next' === $navigation_type ) {
			$format = '%link<span class="wp-block-post-navigation-link__arrow-next is-arrow-' . $attributes['arrow'] . '" aria-hidden="true">' . $arrow . '</span>';
		} else {
			$format = '<span class="wp-block-post-navigation-link__arrow-previous is-arrow-' . $attributes['arrow'] . '" aria-hidden="true">' . $arrow . '</span>%link';
		}
	}

	/*
	 * The dynamic portion of the function name, `$navigation_type`,
	 * Refers to the type of adjacency, 'next' or 'previous'.
	 *
	 * @see https://developer.wordpress.org/reference/functions/get_previous_post_link/
	 * @see https://developer.wordpress.org/reference/functions/get_next_post_link/
	 */
	$get_link_function = "get_{$navigation_type}_post_link";

	if ( ! empty( $attributes['taxonomy'] ) ) {
		$content = $get_link_function( $format, $link, true, '', $attributes['taxonomy'] );
	} else {
		$content = $get_link_function( $format, $link );
	}

	return sprintf(
		'<div %1$s>%2$s</div>',
		$wrapper_attributes,
		$content
	);
}

/**
 * Registers the `core/post-navigation-link` block on the server.
 *
 * @since 5.9.0
 */
function register_block_core_post_navigation_link() {
	register_block_type_from_metadata(
		__DIR__ . '/post-navigation-link',
		array(
			'render_callback' => 'render_block_core_post_navigation_link',
		)
	);
}
add_action( 'init', 'register_block_core_post_navigation_link' );

Current_dir [ WRITEABLE ] Document_root [ WRITEABLE ]


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

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF