??????????????
Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 173

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 174

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 175

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 176

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 177

Warning: Cannot modify header information - headers already sent by (output started at /home/mybf1/public_html/mentol.bf1.my/SS1.php:4) in /home/mybf1/public_html/mentol.bf1.my/SS1.php on line 178
PK1[PdHHarchives/block.jsonnu[{ "apiVersion": 2, "name": "core/archives", "category": "widgets", "attributes": { "displayAsDropdown": { "type": "boolean", "default": false }, "showPostCounts": { "type": "boolean", "default": false } }, "supports": { "align": true, "html": false }, "editorStyle": "wp-block-archives-editor" } PK1[z;c archives.phpnu[ 'monthly', 'format' => 'option', 'show_post_count' => $show_post_count, ) ); $dropdown_args['echo'] = 0; $archives = wp_get_archives( $dropdown_args ); switch ( $dropdown_args['type'] ) { case 'yearly': $label = __( 'Select Year' ); break; case 'monthly': $label = __( 'Select Month' ); break; case 'daily': $label = __( 'Select Day' ); break; case 'weekly': $label = __( 'Select Week' ); break; default: $label = __( 'Select Post' ); break; } $label = esc_html( $label ); $block_content = ' '; return sprintf( '
%2$s
', esc_attr( $class ), $block_content ); } $class .= ' wp-block-archives-list'; /** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */ $archives_args = apply_filters( 'widget_archives_args', array( 'type' => 'monthly', 'show_post_count' => $show_post_count, ) ); $archives_args['echo'] = 0; $archives = wp_get_archives( $archives_args ); $classnames = esc_attr( $class ); $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classnames ) ); if ( empty( $archives ) ) { return sprintf( '
%2$s
', $wrapper_attributes, __( 'No archives to show.' ) ); } return sprintf( '', $wrapper_attributes, $archives ); } /** * Register archives block. */ function register_block_core_archives() { register_block_type_from_metadata( __DIR__ . '/archives', array( 'render_callback' => 'render_block_core_archives', ) ); } add_action( 'init', 'register_block_core_archives' ); PK1[ʤaudio/block.jsonnu[{ "apiVersion": 2, "name": "core/audio", "category": "media", "attributes": { "src": { "type": "string", "source": "attribute", "selector": "audio", "attribute": "src" }, "caption": { "type": "string", "source": "html", "selector": "figcaption" }, "id": { "type": "number" }, "autoplay": { "type": "boolean", "source": "attribute", "selector": "audio", "attribute": "autoplay" }, "loop": { "type": "boolean", "source": "attribute", "selector": "audio", "attribute": "loop" }, "preload": { "type": "string", "source": "attribute", "selector": "audio", "attribute": "preload" } }, "supports": { "anchor": true, "align": true }, "editorStyle": "wp-block-audio-editor", "style": "wp-block-audio" } PK1[block/block.jsonnu[{ "apiVersion": 2, "name": "core/block", "category": "reusable", "attributes": { "ref": { "type": "number" } }, "supports": { "customClassName": false, "html": false, "inserter": false }, "editorStyle": "wp-block-editor" } PK1[h  block.phpnu[post_type ) { return ''; } if ( isset( $seen_refs[ $attributes['ref'] ] ) ) { if ( ! is_admin() ) { trigger_error( sprintf( // translators: %s is the user-provided title of the reusable block. __( 'Could not render Reusable Block %s: blocks cannot be rendered inside themselves.' ), $reusable_block->post_title ), E_USER_WARNING ); } // WP_DEBUG_DISPLAY must only be honored when WP_DEBUG. This precedent // is set in `wp_debug_mode()`. $is_debug = defined( 'WP_DEBUG' ) && WP_DEBUG && defined( 'WP_DEBUG_DISPLAY' ) && WP_DEBUG_DISPLAY; return $is_debug ? // translators: Visible only in the front end, this warning takes the place of a faulty block. __( '[block rendering halted]' ) : ''; } if ( 'publish' !== $reusable_block->post_status || ! empty( $reusable_block->post_password ) ) { return ''; } $seen_refs[ $attributes['ref'] ] = true; $result = do_blocks( $reusable_block->post_content ); unset( $seen_refs[ $attributes['ref'] ] ); return $result; } /** * Registers the `core/block` block. */ function register_block_core_block() { register_block_type_from_metadata( __DIR__ . '/block', array( 'render_callback' => 'render_block_core_block', ) ); } add_action( 'init', 'register_block_core_block' ); PK1[^K~~button/block.jsonnu[{ "apiVersion": 2, "name": "core/button", "category": "design", "parent": [ "core/buttons" ], "attributes": { "url": { "type": "string", "source": "attribute", "selector": "a", "attribute": "href" }, "title": { "type": "string", "source": "attribute", "selector": "a", "attribute": "title" }, "text": { "type": "string", "source": "html", "selector": "a" }, "linkTarget": { "type": "string", "source": "attribute", "selector": "a", "attribute": "target" }, "rel": { "type": "string", "source": "attribute", "selector": "a", "attribute": "rel" }, "placeholder": { "type": "string" }, "borderRadius": { "type": "number" }, "style": { "type": "object" }, "backgroundColor": { "type": "string" }, "textColor": { "type": "string" }, "gradient": { "type": "string" }, "width": { "type": "number" } }, "supports": { "anchor": true, "align": true, "alignWide": false, "reusable": false, "__experimentalSelector": ".wp-block-button > a" }, "editorStyle": "wp-block-button-editor", "style": "wp-block-button" } PK1[᳘ bbbuttons/block.jsonnu[{ "apiVersion": 2, "name": "core/buttons", "category": "design", "attributes": { "contentJustification": { "type": "string" }, "orientation": { "type": "string", "default": "horizontal" } }, "supports": { "anchor": true, "align": [ "wide", "full" ] }, "editorStyle": "wp-block-buttons-editor", "style": "wp-block-buttons" } PK1[ɘNcalendar/block.jsonnu[{ "apiVersion": 2, "name": "core/calendar", "category": "widgets", "attributes": { "month": { "type": "integer" }, "year": { "type": "integer" } }, "supports": { "align": true }, "style": "wp-block-calendar" } PK1[p?!! calendar.phpnu[%2$s', $wrapper_attributes, get_calendar( true, false ) ); // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited $monthnum = $previous_monthnum; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited $year = $previous_year; return $output; } /** * Registers the `core/calendar` block on server. */ function register_block_core_calendar() { register_block_type_from_metadata( __DIR__ . '/calendar', array( 'render_callback' => 'render_block_core_calendar', ) ); } add_action( 'init', 'register_block_core_calendar' ); PK1[:YRcategories/block.jsonnu[{ "apiVersion": 2, "name": "core/categories", "category": "widgets", "attributes": { "displayAsDropdown": { "type": "boolean", "default": false }, "showHierarchy": { "type": "boolean", "default": false }, "showPostCounts": { "type": "boolean", "default": false } }, "supports": { "align": true, "html": false }, "editorStyle": "wp-block-categories-editor", "style": "wp-block-categories" } PK1[dQ0 categories.phpnu[ false, 'hierarchical' => ! empty( $attributes['showHierarchy'] ), 'orderby' => 'name', 'show_count' => ! empty( $attributes['showPostCounts'] ), 'title_li' => '', ); if ( ! empty( $attributes['displayAsDropdown'] ) ) { $id = 'wp-block-categories-' . $block_id; $args['id'] = $id; $args['show_option_none'] = __( 'Select Category' ); $wrapper_markup = '
%2$s
'; $items_markup = wp_dropdown_categories( $args ); $type = 'dropdown'; if ( ! is_admin() ) { // Inject the dropdown script immediately after the select dropdown. $items_markup = preg_replace( '#(?<=)#', build_dropdown_script_block_core_categories( $id ), $items_markup, 1 ); } } else { $wrapper_markup = ''; $items_markup = wp_list_categories( $args ); $type = 'list'; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => "wp-block-categories-{$type}" ) ); return sprintf( $wrapper_markup, $wrapper_attributes, $items_markup ); } /** * Generates the inline script for a categories dropdown field. * * @param string $dropdown_id ID of the dropdown field. * * @return string Returns the dropdown onChange redirection script. */ function build_dropdown_script_block_core_categories( $dropdown_id ) { ob_start(); ?> 'render_block_core_categories', ) ); } add_action( 'init', 'register_block_core_categories' ); PK1[ՠcode/block.jsonnu[{ "apiVersion": 2, "name": "core/code", "category": "text", "attributes": { "content": { "type": "string", "source": "html", "selector": "code" } }, "supports": { "anchor": true, "fontSize": true }, "style": "wp-block-code" } PK1[E\XGGcolumn/block.jsonnu[{ "apiVersion": 2, "name": "core/column", "category": "text", "parent": [ "core/columns" ], "attributes": { "verticalAlignment": { "type": "string" }, "width": { "type": "string" }, "templateLock": { "type": "string" } }, "supports": { "anchor": true, "reusable": false, "html": false } } PK1[>Ghhcolumns/block.jsonnu[{ "apiVersion": 2, "name": "core/columns", "category": "design", "attributes": { "verticalAlignment": { "type": "string" } }, "supports": { "anchor": true, "align": [ "wide", "full" ], "html": false, "color": { "gradients": true, "link": true } }, "editorStyle": "wp-block-columns-editor", "style": "wp-block-columns" } PK1[2#YYembed/block.jsonnu[{ "apiVersion": 2, "name": "core/embed", "category": "embed", "attributes": { "url": { "type": "string" }, "caption": { "type": "string", "source": "html", "selector": "figcaption" }, "type": { "type": "string" }, "providerNameSlug": { "type": "string" }, "allowResponsive": { "type": "boolean", "default": true }, "responsive": { "type": "boolean", "default": false }, "previewable": { "type": "boolean", "default": true } }, "supports": { "align": true }, "editorStyle": "wp-block-embed-editor", "style": "wp-block-embed" } PK1[n//file/block.jsonnu[{ "apiVersion": 2, "name": "core/file", "category": "media", "attributes": { "id": { "type": "number" }, "href": { "type": "string" }, "fileName": { "type": "string", "source": "html", "selector": "a:not([download])" }, "textLinkHref": { "type": "string", "source": "attribute", "selector": "a:not([download])", "attribute": "href" }, "textLinkTarget": { "type": "string", "source": "attribute", "selector": "a:not([download])", "attribute": "target" }, "showDownloadButton": { "type": "boolean", "default": true }, "downloadButtonText": { "type": "string", "source": "html", "selector": "a[download]" } }, "supports": { "anchor": true, "align": true }, "editorStyle": "wp-block-file-editor", "style": "wp-block-file" } PK1[h޳freeform/block.jsonnu[{ "apiVersion": 2, "name": "core/freeform", "category": "text", "attributes": { "content": { "type": "string", "source": "html" } }, "supports": { "className": false, "customClassName": false, "reusable": false }, "editorStyle": "wp-block-freeform-editor" } PK1[}  gallery/block.jsonnu[{ "apiVersion": 2, "name": "core/gallery", "category": "media", "attributes": { "images": { "type": "array", "default": [], "source": "query", "selector": ".blocks-gallery-item", "query": { "url": { "type": "string", "source": "attribute", "selector": "img", "attribute": "src" }, "fullUrl": { "type": "string", "source": "attribute", "selector": "img", "attribute": "data-full-url" }, "link": { "type": "string", "source": "attribute", "selector": "img", "attribute": "data-link" }, "alt": { "type": "string", "source": "attribute", "selector": "img", "attribute": "alt", "default": "" }, "id": { "type": "string", "source": "attribute", "selector": "img", "attribute": "data-id" }, "caption": { "type": "string", "source": "html", "selector": ".blocks-gallery-item__caption" } } }, "ids": { "type": "array", "items": { "type": "number" }, "default": [] }, "columns": { "type": "number", "minimum": 1, "maximum": 8 }, "caption": { "type": "string", "source": "html", "selector": ".blocks-gallery-caption" }, "imageCrop": { "type": "boolean", "default": true }, "linkTo": { "type": "string" }, "sizeSlug": { "type": "string", "default": "large" } }, "supports": { "anchor": true, "align": true }, "editorStyle": "wp-block-gallery-editor", "style": "wp-block-gallery" } PK1[#group/block.jsonnu[{ "apiVersion": 2, "name": "core/group", "category": "design", "attributes": { "tagName": { "type": "string", "default": "div" }, "templateLock": { "type": "string" } }, "supports": { "align": [ "wide", "full" ], "anchor": true, "html": false, "color": { "gradients": true, "link": true }, "spacing": { "padding": true }, "__experimentalBorder": { "radius": true } }, "editorStyle": "wp-block-group-editor", "style": "wp-block-group" } PK1[Ȋ|22heading/block.jsonnu[{ "apiVersion": 2, "name": "core/heading", "category": "text", "attributes": { "textAlign": { "type": "string" }, "content": { "type": "string", "source": "html", "selector": "h1,h2,h3,h4,h5,h6", "default": "" }, "level": { "type": "number", "default": 2 }, "placeholder": { "type": "string" } }, "supports": { "align": [ "wide", "full" ], "anchor": true, "className": false, "color": { "link": true }, "fontSize": true, "lineHeight": true, "__experimentalSelector": { "core/heading/h1": { "selector": "h1", "title": "h1", "attributes": { "level": 1 } }, "core/heading/h2": { "selector": "h2", "title": "h2", "attributes": { "level": 2 } }, "core/heading/h3": { "selector": "h3", "title": "h3", "attributes": { "level": 3 } }, "core/heading/h4": { "selector": "h4", "title": "h4", "attributes": { "level": 4 } }, "core/heading/h5": { "selector": "h5", "title": "h5", "attributes": { "level": 5 } }, "core/heading/h6": { "selector": "h6", "title": "h6", "attributes": { "level": 6 } } }, "__unstablePasteTextInline": true }, "editorStyle": "wp-block-heading-editor", "style": "wp-block-heading" } PK1[html/block.jsonnu[{ "apiVersion": 2, "name": "core/html", "category": "widgets", "attributes": { "content": { "type": "string", "source": "html" } }, "supports": { "customClassName": false, "className": false, "html": false }, "editorStyle": "wp-block-html-editor" } PK1[nnimage/block.jsonnu[{ "apiVersion": 2, "name": "core/image", "category": "media", "attributes": { "align": { "type": "string" }, "url": { "type": "string", "source": "attribute", "selector": "img", "attribute": "src" }, "alt": { "type": "string", "source": "attribute", "selector": "img", "attribute": "alt", "default": "" }, "caption": { "type": "string", "source": "html", "selector": "figcaption" }, "title": { "type": "string", "source": "attribute", "selector": "img", "attribute": "title" }, "href": { "type": "string", "source": "attribute", "selector": "figure > a", "attribute": "href" }, "rel": { "type": "string", "source": "attribute", "selector": "figure > a", "attribute": "rel" }, "linkClass": { "type": "string", "source": "attribute", "selector": "figure > a", "attribute": "class" }, "id": { "type": "number" }, "width": { "type": "number" }, "height": { "type": "number" }, "sizeSlug": { "type": "string" }, "linkDestination": { "type": "string" }, "linkTarget": { "type": "string", "source": "attribute", "selector": "figure > a", "attribute": "target" } }, "supports": { "anchor": true, "__experimentalBorder": { "radius": true } }, "editorStyle": "wp-block-image-editor", "style": "wp-block-image" } PK1[- index.phpnu[ $attributes['commentsToShow'], 'status' => 'approve', 'post_status' => 'publish', ) ) ); $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 .= '
  • '; 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 .= '
    '; $list_items_markup .= ''; if ( $attributes['displayExcerpt'] ) { $list_items_markup .= '
    ' . wpautop( get_comment_excerpt( $comment ) ) . '
    '; } $list_items_markup .= '
  • '; } } $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( '
      %2$s
    ', $wrapper_attributes, $list_items_markup ) : sprintf( '
    %2$s
    ', $wrapper_attributes, __( 'No comments to show.' ) ); } /** * Registers the `core/latest-comments` block. */ 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' ); PK1[4)=latest-posts/block.jsonnu[{ "apiVersion": 2, "name": "core/latest-posts", "category": "widgets", "attributes": { "categories": { "type": "array", "items": { "type": "object" } }, "selectedAuthor": { "type": "number" }, "postsToShow": { "type": "number", "default": 5 }, "displayPostContent": { "type": "boolean", "default": false }, "displayPostContentRadio": { "type": "string", "default": "excerpt" }, "excerptLength": { "type": "number", "default": 55 }, "displayAuthor": { "type": "boolean", "default": false }, "displayPostDate": { "type": "boolean", "default": false }, "postLayout": { "type": "string", "default": "list" }, "columns": { "type": "number", "default": 3 }, "order": { "type": "string", "default": "desc" }, "orderBy": { "type": "string", "default": "date" }, "displayFeaturedImage": { "type": "boolean", "default": false }, "featuredImageAlign": { "type": "string", "enum": [ "left", "center", "right" ] }, "featuredImageSizeSlug": { "type": "string", "default": "thumbnail" }, "featuredImageSizeWidth": { "type": "number", "default": null }, "featuredImageSizeHeight": { "type": "number", "default": null }, "addLinkToFeaturedImage": { "type": "boolean", "default": false } }, "supports": { "align": true, "html": false }, "editorStyle": "wp-block-latest-posts-editor", "style": "wp-block-latest-posts" } PK1[latest-posts.phpnu[ $attributes['postsToShow'], 'post_status' => 'publish', 'order' => $attributes['order'], 'orderby' => $attributes['orderBy'], 'suppress_filters' => false, ); $block_core_latest_posts_excerpt_length = $attributes['excerptLength']; add_filter( 'excerpt_length', 'block_core_latest_posts_get_excerpt_length', 20 ); if ( isset( $attributes['categories'] ) ) { $args['category__in'] = array_column( $attributes['categories'], 'id' ); } if ( isset( $attributes['selectedAuthor'] ) ) { $args['author'] = $attributes['selectedAuthor']; } $recent_posts = get_posts( $args ); $list_items_markup = ''; foreach ( $recent_posts as $post ) { $post_link = esc_url( get_permalink( $post ) ); $list_items_markup .= '
  • '; if ( $attributes['displayFeaturedImage'] && has_post_thumbnail( $post ) ) { $image_style = ''; if ( isset( $attributes['featuredImageSizeWidth'] ) ) { $image_style .= sprintf( 'max-width:%spx;', $attributes['featuredImageSizeWidth'] ); } if ( isset( $attributes['featuredImageSizeHeight'] ) ) { $image_style .= sprintf( 'max-height:%spx;', $attributes['featuredImageSizeHeight'] ); } $image_classes = 'wp-block-latest-posts__featured-image'; if ( isset( $attributes['featuredImageAlign'] ) ) { $image_classes .= ' align' . $attributes['featuredImageAlign']; } $featured_image = get_the_post_thumbnail( $post, $attributes['featuredImageSizeSlug'], array( 'style' => $image_style, ) ); if ( $attributes['addLinkToFeaturedImage'] ) { $featured_image = sprintf( '%2$s', $post_link, $featured_image ); } $list_items_markup .= sprintf( '
    %2$s
    ', $image_classes, $featured_image ); } $title = get_the_title( $post ); if ( ! $title ) { $title = __( '(no title)' ); } $list_items_markup .= sprintf( '%2$s', $post_link, $title ); if ( isset( $attributes['displayAuthor'] ) && $attributes['displayAuthor'] ) { $author_display_name = get_the_author_meta( 'display_name', $post->post_author ); /* translators: byline. %s: current author. */ $byline = sprintf( __( 'by %s' ), $author_display_name ); if ( ! empty( $author_display_name ) ) { $list_items_markup .= sprintf( '
    %1$s
    ', esc_html( $byline ) ); } } if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) { $list_items_markup .= sprintf( '', esc_attr( get_the_date( 'c', $post ) ), esc_html( get_the_date( '', $post ) ) ); } if ( isset( $attributes['displayPostContent'] ) && $attributes['displayPostContent'] && isset( $attributes['displayPostContentRadio'] ) && 'excerpt' === $attributes['displayPostContentRadio'] ) { $trimmed_excerpt = get_the_excerpt( $post ); if ( post_password_required( $post ) ) { $trimmed_excerpt = __( 'This content is password protected.' ); } $list_items_markup .= sprintf( '
    %1$s
    ', $trimmed_excerpt ); } if ( isset( $attributes['displayPostContent'] ) && $attributes['displayPostContent'] && isset( $attributes['displayPostContentRadio'] ) && 'full_post' === $attributes['displayPostContentRadio'] ) { $post_content = wp_kses_post( html_entity_decode( $post->post_content, ENT_QUOTES, get_option( 'blog_charset' ) ) ); if ( post_password_required( $post ) ) { $post_content = __( 'This content is password protected.' ); } $list_items_markup .= sprintf( '
    %1$s
    ', $post_content ); } $list_items_markup .= "
  • \n"; } remove_filter( 'excerpt_length', 'block_core_latest_posts_get_excerpt_length', 20 ); $class = 'wp-block-latest-posts__list'; if ( isset( $attributes['postLayout'] ) && 'grid' === $attributes['postLayout'] ) { $class .= ' is-grid'; } if ( isset( $attributes['columns'] ) && 'grid' === $attributes['postLayout'] ) { $class .= ' columns-' . $attributes['columns']; } if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) { $class .= ' has-dates'; } if ( isset( $attributes['displayAuthor'] ) && $attributes['displayAuthor'] ) { $class .= ' has-author'; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $class ) ); return sprintf( '', $wrapper_attributes, $list_items_markup ); } /** * Registers the `core/latest-posts` block on server. */ function register_block_core_latest_posts() { register_block_type_from_metadata( __DIR__ . '/latest-posts', array( 'render_callback' => 'render_block_core_latest_posts', ) ); } add_action( 'init', 'register_block_core_latest_posts' ); /** * Handles outdated versions of the `core/latest-posts` block by converting * attribute `categories` from a numeric string to an array with key `id`. * * This is done to accommodate the changes introduced in #20781 that sought to * add support for multiple categories to the block. However, given that this * block is dynamic, the usual provisions for block migration are insufficient, * as they only act when a block is loaded in the editor. * * TODO: Remove when and if the bottom client-side deprecation for this block * is removed. * * @param array $block A single parsed block object. * * @return array The migrated block object. */ function block_core_latest_posts_migrate_categories( $block ) { if ( 'core/latest-posts' === $block['blockName'] && ! empty( $block['attrs']['categories'] ) && is_string( $block['attrs']['categories'] ) ) { $block['attrs']['categories'] = array( array( 'id' => absint( $block['attrs']['categories'] ) ), ); } return $block; } add_filter( 'render_block_data', 'block_core_latest_posts_migrate_categories' ); PK1[)list/block.jsonnu[{ "apiVersion": 2, "name": "core/list", "category": "text", "attributes": { "ordered": { "type": "boolean", "default": false }, "values": { "type": "string", "source": "html", "selector": "ol,ul", "multiline": "li", "__unstableMultilineWrapperTags": [ "ol", "ul" ], "default": "" }, "type": { "type": "string" }, "start": { "type": "number" }, "reversed": { "type": "boolean" } }, "supports": { "anchor": true, "className": false, "fontSize": true, "color": { "gradients": true }, "__unstablePasteTextInline": true }, "editorStyle": "wp-block-list-editor", "style": "wp-block-list" } PK1[S5}}media-text/block.jsonnu[{ "apiVersion": 2, "name": "core/media-text", "category": "media", "attributes": { "align": { "type": "string", "default": "wide" }, "mediaAlt": { "type": "string", "source": "attribute", "selector": "figure img", "attribute": "alt", "default": "" }, "mediaPosition": { "type": "string", "default": "left" }, "mediaId": { "type": "number" }, "mediaUrl": { "type": "string", "source": "attribute", "selector": "figure video,figure img", "attribute": "src" }, "mediaLink": { "type": "string" }, "linkDestination": { "type": "string" }, "linkTarget": { "type": "string", "source": "attribute", "selector": "figure a", "attribute": "target" }, "href": { "type": "string", "source": "attribute", "selector": "figure a", "attribute": "href" }, "rel": { "type": "string", "source": "attribute", "selector": "figure a", "attribute": "rel" }, "linkClass": { "type": "string", "source": "attribute", "selector": "figure a", "attribute": "class" }, "mediaType": { "type": "string" }, "mediaWidth": { "type": "number", "default": 50 }, "mediaSizeSlug": { "type": "string" }, "isStackedOnMobile": { "type": "boolean", "default": true }, "verticalAlignment": { "type": "string" }, "imageFill": { "type": "boolean" }, "focalPoint": { "type": "object" } }, "supports": { "anchor": true, "align": [ "wide", "full" ], "html": false, "color": { "gradients": true, "link": true } }, "editorStyle": "wp-block-media-text-editor", "style": "wp-block-media-text" } PK1[K=Cmissing/block.jsonnu[{ "apiVersion": 2, "name": "core/missing", "category": "text", "attributes": { "originalName": { "type": "string" }, "originalUndelimitedContent": { "type": "string" }, "originalContent": { "type": "string", "source": "html" } }, "supports": { "className": false, "customClassName": false, "inserter": false, "html": false, "reusable": false } } PK1[}RRmore/block.jsonnu[{ "apiVersion": 2, "name": "core/more", "category": "design", "attributes": { "customText": { "type": "string" }, "noTeaser": { "type": "boolean", "default": false } }, "supports": { "customClassName": false, "className": false, "html": false, "multiple": false }, "editorStyle": "wp-block-more-editor" } PK1[[{nextpage/block.jsonnu[{ "apiVersion": 2, "name": "core/nextpage", "category": "design", "parent": [ "core/post-content" ], "supports": { "customClassName": false, "className": false, "html": false }, "editorStyle": "wp-block-nextpage-editor" } PK1[\=mparagraph/block.jsonnu[{ "apiVersion": 2, "name": "core/paragraph", "category": "text", "attributes": { "align": { "type": "string" }, "content": { "type": "string", "source": "html", "selector": "p", "default": "" }, "dropCap": { "type": "boolean", "default": false }, "placeholder": { "type": "string" }, "direction": { "type": "string", "enum": [ "ltr", "rtl" ] } }, "supports": { "anchor": true, "className": false, "color": { "link": true }, "fontSize": true, "lineHeight": true, "__experimentalSelector": "p", "__unstablePasteTextInline": true }, "editorStyle": "wp-block-paragraph-editor", "style": "wp-block-paragraph" } PK1[@J]EEpreformatted/block.jsonnu[{ "apiVersion": 2, "name": "core/preformatted", "category": "text", "attributes": { "content": { "type": "string", "source": "html", "selector": "pre", "default": "", "__unstablePreserveWhiteSpace": true } }, "supports": { "anchor": true, "fontSize": true }, "style": "wp-block-preformatted" } PK1[@Dpullquote/block.jsonnu[{ "apiVersion": 2, "name": "core/pullquote", "category": "text", "attributes": { "value": { "type": "string", "source": "html", "selector": "blockquote", "multiline": "p" }, "citation": { "type": "string", "source": "html", "selector": "cite", "default": "" }, "mainColor": { "type": "string" }, "customMainColor": { "type": "string" }, "textColor": { "type": "string" }, "customTextColor": { "type": "string" } }, "supports": { "anchor": true, "align": [ "left", "right", "wide", "full" ] }, "editorStyle": "wp-block-pullquote-editor", "style": "wp-block-pullquote" } PK1[r=Yquote/block.jsonnu[{ "apiVersion": 2, "name": "core/quote", "category": "text", "attributes": { "value": { "type": "string", "source": "html", "selector": "blockquote", "multiline": "p", "default": "" }, "citation": { "type": "string", "source": "html", "selector": "cite", "default": "" }, "align": { "type": "string" } }, "supports": { "anchor": true }, "editorStyle": "wp-block-quote-editor", "style": "wp-block-quote" } PK1[1%rrss/block.jsonnu[{ "apiVersion": 2, "name": "core/rss", "category": "widgets", "attributes": { "columns": { "type": "number", "default": 2 }, "blockLayout": { "type": "string", "default": "list" }, "feedURL": { "type": "string", "default": "" }, "itemsToShow": { "type": "number", "default": 5 }, "displayExcerpt": { "type": "boolean", "default": false }, "displayAuthor": { "type": "boolean", "default": false }, "displayDate": { "type": "boolean", "default": false }, "excerptLength": { "type": "number", "default": 55 } }, "supports": { "align": true, "html": false }, "editorStyle": "wp-block-rss-editor", "style": "wp-block-rss" } PK1[ `3 rss.phpnu[
    ' . __( 'RSS Error:' ) . ' ' . esc_html( $rss->get_error_message() ) . '
    '; } if ( ! $rss->get_item_quantity() ) { return '
    ' . __( 'An error has occurred, which probably means the feed is down. Try again later.' ) . '
    '; } $rss_items = $rss->get_items( 0, $attributes['itemsToShow'] ); $list_items = ''; foreach ( $rss_items as $item ) { $title = esc_html( trim( strip_tags( $item->get_title() ) ) ); if ( empty( $title ) ) { $title = __( '(no title)' ); } $link = $item->get_link(); $link = esc_url( $link ); if ( $link ) { $title = "{$title}"; } $title = "
    {$title}
    "; $date = ''; if ( $attributes['displayDate'] ) { $date = $item->get_date( 'U' ); if ( $date ) { $date = sprintf( ' ', esc_attr( date_i18n( get_option( 'c' ), $date ) ), esc_attr( date_i18n( get_option( 'date_format' ), $date ) ) ); } } $author = ''; if ( $attributes['displayAuthor'] ) { $author = $item->get_author(); if ( is_object( $author ) ) { $author = $author->get_name(); $author = '' . sprintf( /* translators: %s: the author. */ __( 'by %s' ), esc_html( strip_tags( $author ) ) ) . ''; } } $excerpt = ''; if ( $attributes['displayExcerpt'] ) { $excerpt = html_entity_decode( $item->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) ); $excerpt = esc_attr( wp_trim_words( $excerpt, $attributes['excerptLength'], ' […]' ) ); // Change existing [...] to […]. if ( '[...]' === substr( $excerpt, -5 ) ) { $excerpt = substr( $excerpt, 0, -5 ) . '[…]'; } $excerpt = '
    ' . esc_html( $excerpt ) . '
    '; } $list_items .= "
  • {$title}{$date}{$author}{$excerpt}
  • "; } $classnames = array(); if ( isset( $attributes['blockLayout'] ) && 'grid' === $attributes['blockLayout'] ) { $classnames[] = 'is-grid'; } if ( isset( $attributes['columns'] ) && 'grid' === $attributes['blockLayout'] ) { $classnames[] = 'columns-' . $attributes['columns']; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classnames ) ) ); return sprintf( '', $wrapper_attributes, $list_items ); } /** * Registers the `core/rss` block on server. */ function register_block_core_rss() { register_block_type_from_metadata( __DIR__ . '/rss', array( 'render_callback' => 'render_block_core_rss', ) ); } add_action( 'init', 'register_block_core_rss' ); PK1[a search/block.jsonnu[{ "apiVersion": 2, "name": "core/search", "category": "widgets", "attributes": { "label": { "type": "string" }, "showLabel": { "type": "boolean", "default": true }, "placeholder": { "type": "string", "default": "" }, "width": { "type": "number" }, "widthUnit": { "type": "string" }, "buttonText": { "type": "string" }, "buttonPosition": { "type": "string", "default": "button-outside" }, "buttonUseIcon": { "type": "boolean", "default": false } }, "supports": { "align": [ "left", "center", "right" ], "html": false }, "editorStyle": "wp-block-search-editor", "style": "wp-block-search" } PK1[젟99 search.phpnu[`. Support these by defaulting an undefined label and // buttonText to `__( 'Search' )`. $attributes = wp_parse_args( $attributes, array( 'label' => __( 'Search' ), 'buttonText' => __( 'Search' ), ) ); $input_id = 'wp-block-search__input-' . ++$instance_id; $classnames = classnames_for_block_core_search( $attributes ); $show_label = ( ! empty( $attributes['showLabel'] ) ) ? true : false; $use_icon_button = ( ! empty( $attributes['buttonUseIcon'] ) ) ? true : false; $show_input = ( ! empty( $attributes['buttonPosition'] ) && 'button-only' === $attributes['buttonPosition'] ) ? false : true; $show_button = ( ! empty( $attributes['buttonPosition'] ) && 'no-button' === $attributes['buttonPosition'] ) ? false : true; $label_markup = ''; $input_markup = ''; $button_markup = ''; $width_styles = ''; if ( $show_label ) { if ( ! empty( $attributes['label'] ) ) { $label_markup = sprintf( '', $input_id, $attributes['label'] ); } else { $label_markup = sprintf( '', $input_id, __( 'Search' ) ); } } if ( $show_input ) { $input_markup = sprintf( '', $input_id, esc_attr( get_search_query() ), esc_attr( $attributes['placeholder'] ) ); } if ( $show_button ) { $button_internal_markup = ''; $button_classes = ''; if ( ! $use_icon_button ) { if ( ! empty( $attributes['buttonText'] ) ) { $button_internal_markup = $attributes['buttonText']; } } else { $button_classes .= 'has-icon'; $button_internal_markup = ' '; } $button_markup = sprintf( '', $button_internal_markup ); } if ( ! empty( $attributes['width'] ) && ! empty( $attributes['widthUnit'] ) ) { if ( ! empty( $attributes['buttonPosition'] ) && 'button-only' !== $attributes['buttonPosition'] ) { $width_styles = ' style="width: ' . $attributes['width'] . $attributes['widthUnit'] . ';"'; } } $field_markup = sprintf( '
    %s
    ', $width_styles, $input_markup . $button_markup ); $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $classnames ) ); return sprintf( '
    %s
    ', esc_url( home_url( '/' ) ), $wrapper_attributes, $label_markup . $field_markup ); } /** * Registers the `core/search` block on the server. */ function register_block_core_search() { register_block_type_from_metadata( __DIR__ . '/search', array( 'render_callback' => 'render_block_core_search', ) ); } add_action( 'init', 'register_block_core_search' ); /** * Builds the correct top level classnames for the 'core/search' block. * * @param array $attributes The block attributes. * * @return string The classnames used in the block. */ function classnames_for_block_core_search( $attributes ) { $classnames = array(); if ( ! empty( $attributes['buttonPosition'] ) ) { if ( 'button-inside' === $attributes['buttonPosition'] ) { $classnames[] = 'wp-block-search__button-inside'; } if ( 'button-outside' === $attributes['buttonPosition'] ) { $classnames[] = 'wp-block-search__button-outside'; } if ( 'no-button' === $attributes['buttonPosition'] ) { $classnames[] = 'wp-block-search__no-button'; } if ( 'button-only' === $attributes['buttonPosition'] ) { $classnames[] = 'wp-block-search__button-only'; } } if ( isset( $attributes['buttonUseIcon'] ) ) { if ( ! empty( $attributes['buttonPosition'] ) && 'no-button' !== $attributes['buttonPosition'] ) { if ( $attributes['buttonUseIcon'] ) { $classnames[] = 'wp-block-search__icon-button'; } else { $classnames[] = 'wp-block-search__text-button'; } } } return implode( ' ', $classnames ); } PK1[IMCCseparator/block.jsonnu[{ "apiVersion": 2, "name": "core/separator", "category": "design", "attributes": { "color": { "type": "string" }, "customColor": { "type": "string" } }, "supports": { "anchor": true, "align": ["center","wide","full"] }, "editorStyle": "wp-block-separator-editor", "style": "wp-block-separator" } PK1[YQshortcode/block.jsonnu[{ "apiVersion": 2, "name": "core/shortcode", "category": "widgets", "attributes": { "text": { "type": "string", "source": "html" } }, "supports": { "className": false, "customClassName": false, "html": false }, "editorStyle": "wp-block-shortcode-editor" } PK1[q3 shortcode.phpnu[ 'render_block_core_shortcode', ) ); } add_action( 'init', 'register_block_core_shortcode' ); PK1[ social-link/block.jsonnu[{ "apiVersion": 2, "name": "core/social-link", "category": "widgets", "parent": [ "core/social-links" ], "attributes": { "url": { "type": "string" }, "service": { "type": "string" }, "label": { "type": "string" } }, "usesContext": [ "openInNewTab", "iconColorValue", "iconBackgroundColorValue" ], "supports": { "reusable": false, "html": false }, "editorStyle": "wp-block-social-link-editor" } PK1[@@social-link.phpnu[context['openInNewTab'] ) ? $block->context['openInNewTab'] : false; $service = ( isset( $attributes['service'] ) ) ? $attributes['service'] : 'Icon'; $url = ( isset( $attributes['url'] ) ) ? $attributes['url'] : false; $label = ( isset( $attributes['label'] ) ) ? $attributes['label'] : block_core_social_link_get_name( $service ); $class_name = isset( $attributes['className'] ) ? ' ' . $attributes['className'] : false; // Don't render a link if there is no URL set. if ( ! $url ) { return ''; } $attribute = ''; if ( $open_in_new_tab ) { $attribute = 'rel="noopener nofollow" target="_blank"'; } $icon = block_core_social_link_get_icon( $service ); $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => 'wp-social-link wp-social-link-' . $service . $class_name, 'style' => block_core_social_link_get_color_styles( $block->context ), ) ); return '
  • ' . $icon . '
  • '; } /** * Registers the `core/social-link` blocks. */ function register_block_core_social_link() { register_block_type_from_metadata( __DIR__ . '/social-link', array( 'render_callback' => 'render_block_core_social_link', ) ); } add_action( 'init', 'register_block_core_social_link' ); /** * Returns the SVG for social link. * * @param string $service The service icon. * * @return string SVG Element for service icon. */ function block_core_social_link_get_icon( $service ) { $services = block_core_social_link_services(); if ( isset( $services[ $service ] ) && isset( $services[ $service ]['icon'] ) ) { return $services[ $service ]['icon']; } return $services['share']['icon']; } /** * Returns the brand name for social link. * * @param string $service The service icon. * * @return string Brand label. */ function block_core_social_link_get_name( $service ) { $services = block_core_social_link_services(); if ( isset( $services[ $service ] ) && isset( $services[ $service ]['name'] ) ) { return $services[ $service ]['name']; } return $services['share']['name']; } /** * Returns the SVG for social link. * * @param string $service The service slug to extract data from. * @param string $field The field ('name', 'icon', etc) to extract for a service. * * @return array|string */ function block_core_social_link_services( $service = '', $field = '' ) { $services_data = array( 'fivehundredpx' => array( 'name' => '500px', 'icon' => '', ), 'amazon' => array( 'name' => 'Amazon', 'icon' => '', ), 'bandcamp' => array( 'name' => 'Bandcamp', 'icon' => '', ), 'behance' => array( 'name' => 'Behance', 'icon' => '', ), 'chain' => array( 'name' => 'Link', 'icon' => '', ), 'codepen' => array( 'name' => 'CodePen', 'icon' => '', ), 'deviantart' => array( 'name' => 'DeviantArt', 'icon' => '', ), 'dribbble' => array( 'name' => 'Dribbble', 'icon' => '', ), 'dropbox' => array( 'name' => 'Dropbox', 'icon' => '', ), 'etsy' => array( 'name' => 'Etsy', 'icon' => '', ), 'facebook' => array( 'name' => 'Facebook', 'icon' => '', ), 'feed' => array( 'name' => 'RSS Feed', 'icon' => '', ), 'flickr' => array( 'name' => 'Flickr', 'icon' => '', ), 'foursquare' => array( 'name' => 'Foursquare', 'icon' => '', ), 'goodreads' => array( 'name' => 'Goodreads', 'icon' => '', ), 'google' => array( 'name' => 'Google', 'icon' => '', ), 'github' => array( 'name' => 'GitHub', 'icon' => '', ), 'instagram' => array( 'name' => 'Instagram', 'icon' => '', ), 'lastfm' => array( 'name' => 'Last.fm', 'icon' => '', ), 'linkedin' => array( 'name' => 'LinkedIn', 'icon' => '', ), 'mail' => array( 'name' => 'Mail', 'icon' => '', ), 'mastodon' => array( 'name' => 'Mastodon', 'icon' => '', ), 'meetup' => array( 'name' => 'Meetup', 'icon' => '', ), 'medium' => array( 'name' => 'Medium', 'icon' => '', ), 'patreon' => array( 'name' => 'Patreon', 'icon' => '', ), 'pinterest' => array( 'name' => 'Pinterest', 'icon' => '', ), 'pocket' => array( 'name' => 'Pocket', 'icon' => '', ), 'reddit' => array( 'name' => 'Reddit', 'icon' => '', ), 'skype' => array( 'name' => 'Skype', 'icon' => '', ), 'snapchat' => array( 'name' => 'Snapchat', 'icon' => '', ), 'soundcloud' => array( 'name' => 'Soundcloud', 'icon' => '', ), 'spotify' => array( 'name' => 'Spotify', 'icon' => '', ), 'telegram' => array( 'name' => 'Telegram', 'icon' => '', ), 'tiktok' => array( 'name' => 'TikTok', 'icon' => '', ), 'tumblr' => array( 'name' => 'Tumblr', 'icon' => '', ), 'twitch' => array( 'name' => 'Twitch', 'icon' => '', ), 'twitter' => array( 'name' => 'Twitter', 'icon' => '', ), 'vimeo' => array( 'name' => 'Vimeo', 'icon' => '', ), 'vk' => array( 'name' => 'VK', 'icon' => '', ), 'wordpress' => array( 'name' => 'WordPress', 'icon' => '', ), 'yelp' => array( 'name' => 'Yelp', 'icon' => '', ), 'youtube' => array( 'name' => 'YouTube', 'icon' => '', ), 'share' => array( 'name' => 'Share Icon', 'icon' => '', ), ); if ( ! empty( $service ) && ! empty( $field ) && isset( $services_data[ $service ] ) && ( 'icon' === $field || 'name' === $field ) ) { return $services_data[ $service ][ $field ]; } elseif ( ! empty( $service ) && isset( $services_data[ $service ] ) ) { return $services_data[ $service ]; } return $services_data; } /** * Returns CSS styles for icon and icon background colors. * * @param array $context Block context passed to Social Link. * * @return string Inline CSS styles for link's icon and background colors. */ function block_core_social_link_get_color_styles( $context ) { $styles = array(); if ( array_key_exists( 'iconColorValue', $context ) ) { $styles[] = 'color: ' . $context['iconColorValue'] . '; '; } if ( array_key_exists( 'iconBackgroundColorValue', $context ) ) { $styles[] = 'background-color: ' . $context['iconBackgroundColorValue'] . '; '; } return implode( '', $styles ); } PK1[:с>>social-links/block.jsonnu[{ "apiVersion": 2, "name": "core/social-links", "category": "widgets", "attributes": { "iconColor": { "type": "string" }, "customIconColor": { "type": "string" }, "iconColorValue": { "type": "string" }, "iconBackgroundColor": { "type": "string" }, "customIconBackgroundColor": { "type": "string" }, "iconBackgroundColorValue": { "type": "string" }, "openInNewTab": { "type": "boolean", "default": false }, "size": { "type": "string" } }, "providesContext": { "openInNewTab": "openInNewTab", "iconColorValue": "iconColorValue", "iconBackgroundColorValue": "iconBackgroundColorValue" }, "supports": { "align": [ "left", "center", "right" ], "anchor": true }, "editorStyle": "wp-block-social-links-editor", "style": "wp-block-social-links" } PK1[CO spacer/block.jsonnu[{ "apiVersion": 2, "name": "core/spacer", "category": "design", "attributes": { "height": { "type": "number", "default": 100 } }, "supports": { "anchor": true }, "editorStyle": "wp-block-spacer-editor", "style": "wp-block-spacer" } PK1[znrSSsubhead/block.jsonnu[{ "apiVersion": 2, "name": "core/subhead", "category": "text", "attributes": { "align": { "type": "string" }, "content": { "type": "string", "source": "html", "selector": "p" } }, "supports": { "inserter": false, "multiple": false }, "editorStyle": "wp-block-subhead-editor", "style": "wp-block-subhead" } PK1[/ table/block.jsonnu[{ "apiVersion": 2, "name": "core/table", "category": "text", "attributes": { "hasFixedLayout": { "type": "boolean", "default": false }, "backgroundColor": { "type": "string" }, "caption": { "type": "string", "source": "html", "selector": "figcaption", "default": "" }, "head": { "type": "array", "default": [], "source": "query", "selector": "thead tr", "query": { "cells": { "type": "array", "default": [], "source": "query", "selector": "td,th", "query": { "content": { "type": "string", "source": "html" }, "tag": { "type": "string", "default": "td", "source": "tag" }, "scope": { "type": "string", "source": "attribute", "attribute": "scope" }, "align": { "type": "string", "source": "attribute", "attribute": "data-align" } } } } }, "body": { "type": "array", "default": [], "source": "query", "selector": "tbody tr", "query": { "cells": { "type": "array", "default": [], "source": "query", "selector": "td,th", "query": { "content": { "type": "string", "source": "html" }, "tag": { "type": "string", "default": "td", "source": "tag" }, "scope": { "type": "string", "source": "attribute", "attribute": "scope" }, "align": { "type": "string", "source": "attribute", "attribute": "data-align" } } } } }, "foot": { "type": "array", "default": [], "source": "query", "selector": "tfoot tr", "query": { "cells": { "type": "array", "default": [], "source": "query", "selector": "td,th", "query": { "content": { "type": "string", "source": "html" }, "tag": { "type": "string", "default": "td", "source": "tag" }, "scope": { "type": "string", "source": "attribute", "attribute": "scope" }, "align": { "type": "string", "source": "attribute", "attribute": "data-align" } } } } } }, "supports": { "anchor": true, "align": true, "__experimentalSelector": ".wp-block-table > table" }, "editorStyle": "wp-block-table-editor", "style": "wp-block-table" } PK1[z[PDDtag-cloud/block.jsonnu[{ "apiVersion": 2, "name": "core/tag-cloud", "category": "widgets", "attributes": { "taxonomy": { "type": "string", "default": "post_tag" }, "showTagCounts": { "type": "boolean", "default": false } }, "supports": { "html": false, "align": true }, "editorStyle": "wp-block-tag-cloud-editor" } PK1[Xz tag-cloud.phpnu[ false, 'taxonomy' => $attributes['taxonomy'], 'show_count' => $attributes['showTagCounts'], ); $tag_cloud = wp_tag_cloud( $args ); if ( ! $tag_cloud ) { $labels = get_taxonomy_labels( get_taxonomy( $attributes['taxonomy'] ) ); $tag_cloud = esc_html( sprintf( /* translators: %s: taxonomy name */ __( 'Your site doesn’t have any %s, so there’s nothing to display here at the moment.' ), strtolower( $labels->name ) ) ); } $wrapper_attributes = get_block_wrapper_attributes(); return sprintf( '

    %2$s

    ', $wrapper_attributes, $tag_cloud ); } /** * Registers the `core/tag-cloud` block on server. */ function register_block_core_tag_cloud() { register_block_type_from_metadata( __DIR__ . '/tag-cloud', array( 'render_callback' => 'render_block_core_tag_cloud', ) ); } add_action( 'init', 'register_block_core_tag_cloud' ); PK1[X˭text-columns/block.jsonnu[{ "apiVersion": 2, "name": "core/text-columns", "icon": "columns", "category": "design", "attributes": { "content": { "type": "array", "source": "query", "selector": "p", "query": { "children": { "type": "string", "source": "html" } }, "default": [ {}, {} ] }, "columns": { "type": "number", "default": 2 }, "width": { "type": "string" } }, "supports": { "inserter": false }, "editorStyle": "wp-block-text-columns-editor", "style": "wp-block-text-columns" } PK1[ήverse/block.jsonnu[{ "apiVersion": 2, "name": "core/verse", "category": "text", "attributes": { "content": { "type": "string", "source": "html", "selector": "pre", "default": "", "__unstablePreserveWhiteSpace": true }, "textAlign": { "type": "string" } }, "supports": { "anchor": true, "__experimentalFontFamily": true, "fontSize": true }, "style": "wp-block-verse", "editorStyle": "wp-block-verse-editor" } PK1[yssvideo/block.jsonnu[{ "apiVersion": 2, "name": "core/video", "category": "media", "attributes": { "autoplay": { "type": "boolean", "source": "attribute", "selector": "video", "attribute": "autoplay" }, "caption": { "type": "string", "source": "html", "selector": "figcaption" }, "controls": { "type": "boolean", "source": "attribute", "selector": "video", "attribute": "controls", "default": true }, "id": { "type": "number" }, "loop": { "type": "boolean", "source": "attribute", "selector": "video", "attribute": "loop" }, "muted": { "type": "boolean", "source": "attribute", "selector": "video", "attribute": "muted" }, "poster": { "type": "string", "source": "attribute", "selector": "video", "attribute": "poster" }, "preload": { "type": "string", "source": "attribute", "selector": "video", "attribute": "preload", "default": "metadata" }, "src": { "type": "string", "source": "attribute", "selector": "video", "attribute": "src" }, "playsInline": { "type": "boolean", "source": "attribute", "selector": "video", "attribute": "playsinline" }, "tracks": { "type": "array", "items": { "type": "object" }, "default": [] } }, "supports": { "anchor": true, "align": true }, "editorStyle": "wp-block-video-editor", "style": "wp-block-video" } PK1['aGoGo error_lognu[[15-Oct-2025 07:35:44 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [15-Oct-2025 07:35:44 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [15-Oct-2025 07:35:44 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [15-Oct-2025 07:35:44 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 14:00:17 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:39 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:39 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:39 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:39 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:41 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:41 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:41 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 16:25:41 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:57:57 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:57:57 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:57:57 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:57:57 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:58:06 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:58:06 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:58:06 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [27-Oct-2025 22:58:06 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [06-Dec-2025 00:47:13 UTC] PHP Warning: Use of undefined constant ABSPATH - assumed 'ABSPATH' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [06-Dec-2025 00:47:13 UTC] PHP Warning: Use of undefined constant WPINC - assumed 'WPINC' (this will throw an Error in a future version of PHP) in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [06-Dec-2025 00:47:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [06-Dec-2025 00:47:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php72/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:17:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:17:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:17:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:17:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:17:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:17:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:21:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:21:11 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:21:11 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:24:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:24:32 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:24:32 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:27:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:27:50 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:27:50 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:31:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:31:04 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:31:04 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:34:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:34:21 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:34:21 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:38:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:38:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:38:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:42:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:42:13 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:42:13 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:45:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:45:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:45:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:48:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:48:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:48:49 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:52:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:52:46 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:52:46 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:56:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:56:07 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:56:07 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:59:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:59:33 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 12:59:33 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:03:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:03:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:03:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:06:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:06:34 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:06:34 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:11:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:11:49 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:11:49 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:15:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:15:20 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:15:20 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:19:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:19:16 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:19:16 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:23:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:23:09 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:23:09 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:27:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:27:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:27:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:31:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:31:24 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:31:24 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:32:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:32:08 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:32:08 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:35:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:35:18 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:35:18 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:38:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:38:54 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 13:38:54 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 19:06:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 19:06:26 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 19:06:26 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 19:06:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 19:06:38 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [12-Dec-2025 19:06:38 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [13-Dec-2025 20:25:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [13-Dec-2025 20:25:27 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [13-Dec-2025 20:25:27 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [13-Dec-2025 20:26:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [13-Dec-2025 20:26:19 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [13-Dec-2025 20:26:19 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [16-Dec-2025 06:19:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [16-Dec-2025 06:19:59 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [16-Dec-2025 06:19:59 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [16-Dec-2025 07:03:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [16-Dec-2025 07:03:10 UTC] PHP Warning: require(ABSPATHWPINC/blocks/archives.php): failed to open stream: No such file or directory in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 [16-Dec-2025 07:03:10 UTC] PHP Fatal error: require(): Failed opening required 'ABSPATHWPINC/blocks/archives.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/mybf1/public_html/mentol.bf1.my/wp-includes/blocks/index.php on line 9 PK![ydccarchives/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccaudio/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccblock/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccbutton/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccbuttons/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcccalendar/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcccategories/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccclassic/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcccode/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcccolumn/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcccolumns/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccfile/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccgallery/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccgroup/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccheading/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcchtml/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccimage/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcclatest-comments/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcclatest-posts/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcclist/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccmedia-text/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccmissing/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccmore/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccnextpage/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccparagraph/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccpreformatted/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccpullquote/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccquote/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcc rss/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccsearch/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccseparator/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccshortcode/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccsocial-link/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccsocial-links/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccspacer/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccsubhead/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcctable/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcctag-cloud/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcctext-columns/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccverse/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccvideo/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccembed/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydccfreeform/.htaccessnu6$ Order Allow,Deny Deny from all PK![ydcc .htaccessnu6$ Order Allow,Deny Deny from all PK1[PdHHarchives/block.jsonnu[PK1[z;c archives.phpnu[PK1[ʤ audio/block.jsonnu[PK1[block/block.jsonnu[PK1[h  "block.phpnu[PK1[^K~~vbutton/block.jsonnu[PK1[᳘ bb5buttons/block.jsonnu[PK1[ɘNcalendar/block.jsonnu[PK1[p?!!  calendar.phpnu[PK1[:YRc&categories/block.jsonnu[PK1[dQ0 Y(categories.phpnu[PK1[ՠ2code/block.jsonnu[PK1[E\XGG3column/block.jsonnu[PK1[>Ghhc5columns/block.jsonnu[PK1[2#YY 7embed/block.jsonnu[PK1[n//9file/block.jsonnu[PK1[h޳=freeform/block.jsonnu[PK1[}  q>gallery/block.jsonnu[PK1[#Dgroup/block.jsonnu[PK1[Ȋ|22Fheading/block.jsonnu[PK1[dLhtml/block.jsonnu[PK1[nnMimage/block.jsonnu[PK1[- bSindex.phpnu[PK1[bΜIYlatest-comments/block.jsonnu[PK1[$[latest-comments.phpnu[PK1[4)=olatest-posts/block.jsonnu[PK1[ulatest-posts.phpnu[PK1[)ّlist/block.jsonnu[PK1[S5}}media-text/block.jsonnu[PK1[K=Comissing/block.jsonnu[PK1[}RR4more/block.jsonnu[PK1[[{Şnextpage/block.jsonnu[PK1[\=mparagraph/block.jsonnu[PK1[@J]EEpreformatted/block.jsonnu[PK1[@Dzpullquote/block.jsonnu[PK1[r=YNquote/block.jsonnu[PK1[1%rXrss/block.jsonnu[PK1[ `3 ^rss.phpnu[PK1[a gsearch/block.jsonnu[PK1[젟99 Fsearch.phpnu[PK1[IMCCseparator/block.jsonnu[PK1[YQ@shortcode/block.jsonnu[PK1[q3 shortcode.phpnu[PK1[ social-link/block.jsonnu[PK1[@@social-link.phpnu[PK1[:с>>social-links/block.jsonnu[PK1[CO spacer/block.jsonnu[PK1[znrSSsubhead/block.jsonnu[PK1[/ ftable/block.jsonnu[PK1[z[PDD7tag-cloud/block.jsonnu[PK1[Xz tag-cloud.phpnu[PK1[X˭text-columns/block.jsonnu[PK1[ήQverse/block.jsonnu[PK1[yss?video/block.jsonnu[PK1['aGoGo error_lognu[PK![ydccOarchives/.htaccessnu6$PK![ydcc%Paudio/.htaccessnu6$PK![ydccPblock/.htaccessnu6$PK![ydcciQbutton/.htaccessnu6$PK![ydcc Rbuttons/.htaccessnu6$PK![ydccRcalendar/.htaccessnu6$PK![ydccUScategories/.htaccessnu6$PK![ydccSclassic/.htaccessnu6$PK![ydccTcode/.htaccessnu6$PK![ydccAUcolumn/.htaccessnu6$PK![ydccUcolumns/.htaccessnu6$PK![ydccVfile/.htaccessnu6$PK![ydcc)Wgallery/.htaccessnu6$PK![ydccWgroup/.htaccessnu6$PK![ydccoXheading/.htaccessnu6$PK![ydccYhtml/.htaccessnu6$PK![ydccYimage/.htaccessnu6$PK![ydccVZlatest-comments/.htaccessnu6$PK![ydcc[latest-posts/.htaccessnu6$PK![ydcc[list/.htaccessnu6$PK![ydccL\media-text/.htaccessnu6$PK![ydcc\missing/.htaccessnu6$PK![ydcc]more/.htaccessnu6$PK![ydcc8^nextpage/.htaccessnu6$PK![ydcc^paragraph/.htaccessnu6$PK![ydcc_preformatted/.htaccessnu6$PK![ydcc,`pullquote/.htaccessnu6$PK![ydcc`quote/.htaccessnu6$PK![ydcc tarss/.htaccessnu6$PK![ydccbsearch/.htaccessnu6$PK![ydccbseparator/.htaccessnu6$PK![ydcc]cshortcode/.htaccessnu6$PK![ydccdsocial-link/.htaccessnu6$PK![ydccdsocial-links/.htaccessnu6$PK![ydccTespacer/.htaccessnu6$PK![ydccesubhead/.htaccessnu6$PK![ydccftable/.htaccessnu6$PK![ydcc=gtag-cloud/.htaccessnu6$PK![ydccgtext-columns/.htaccessnu6$PK![ydcchverse/.htaccessnu6$PK![ydcc.ivideo/.htaccessnu6$PK![ydcciembed/.htaccessnu6$PK![ydccrjfreeform/.htaccessnu6$PK![ydcc k.htaccessnu6$PKccLk