Plugin Directory

Changeset 3460426


Ignore:
Timestamp:
02/13/2026 12:46:53 AM (4 weeks ago)
Author:
inc2734
Message:

Version up. v24.1.11

Location:
snow-monkey-blocks/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • snow-monkey-blocks/trunk/changelog.txt

    r3443672 r3460426  
    11*** Changelog ***
     2
     3= 24.1.11 =
     4* [FAQ] Fixed a bug where correct structured data was not output.
    25
    36= 24.1.10 =
  • snow-monkey-blocks/trunk/dist/blocks/faq/block.json

    r3129460 r3460426  
    22  "$schema": "https://schemas.wp.org/trunk/block.json",
    33  "apiVersion": 3,
    4   "version": "21.0.6",
     4  "version": "24.1.11",
    55  "textdomain": "snow-monkey-blocks",
    66  "name": "snow-monkey-blocks/faq",
  • snow-monkey-blocks/trunk/dist/blocks/faq/item/index.php

    r3278039 r3460426  
    2121            $xpath = new \DOMXPath( $dom );
    2222
    23             $question_item = $xpath->query( '//*[@class="smb-faq__item__question__body"]' )->item( 0 );
     23            $question_item = $xpath->query( '//*[contains(concat(" ", normalize-space(@class), " "), " smb-faq__item__question__body ")]' )->item( 0 );
    2424            $question      = $question_item ? Helper::inner_html( $question_item ) : null;
    25             $answer_item   = $xpath->query( '//*[@class="smb-faq__item__answer__body"]' )->item( 0 );
     25            $answer_item   = $xpath->query( '//*[contains(concat(" ", normalize-space(@class), " "), " smb-faq__item__answer__body ")]' )->item( 0 );
    2626            $answer        = $answer_item ? Helper::inner_html( $answer_item ) : null;
    2727
  • snow-monkey-blocks/trunk/readme.txt

    r3443672 r3460426  
    33Donate link: https://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40
    44Tags: gutenberg, block, blocks, editor, gutenberg blocks
    5 Stable tag: 24.1.10
     5Stable tag: 24.1.11
    66Requires at least: 6.8
    77Tested up to: 6.9
  • snow-monkey-blocks/trunk/snow-monkey-blocks.php

    r3443672 r3460426  
    22/**
    33 * Plugin name: Snow Monkey Blocks
    4  * Version: 24.1.10
     4 * Version: 24.1.11
    55 * Description: Gutenberg blocks collection made by MonkeyWrench.
    66 * Author: inc2734
Note: See TracChangeset for help on using the changeset viewer.