Changeset 3460426
- Timestamp:
- 02/13/2026 12:46:53 AM (4 weeks ago)
- Location:
- snow-monkey-blocks/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
dist/blocks/faq/block.json (modified) (1 diff)
-
dist/blocks/faq/item/index.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
snow-monkey-blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
snow-monkey-blocks/trunk/changelog.txt
r3443672 r3460426 1 1 *** Changelog *** 2 3 = 24.1.11 = 4 * [FAQ] Fixed a bug where correct structured data was not output. 2 5 3 6 = 24.1.10 = -
snow-monkey-blocks/trunk/dist/blocks/faq/block.json
r3129460 r3460426 2 2 "$schema": "https://schemas.wp.org/trunk/block.json", 3 3 "apiVersion": 3, 4 "version": "2 1.0.6",4 "version": "24.1.11", 5 5 "textdomain": "snow-monkey-blocks", 6 6 "name": "snow-monkey-blocks/faq", -
snow-monkey-blocks/trunk/dist/blocks/faq/item/index.php
r3278039 r3460426 21 21 $xpath = new \DOMXPath( $dom ); 22 22 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 ); 24 24 $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 ); 26 26 $answer = $answer_item ? Helper::inner_html( $answer_item ) : null; 27 27 -
snow-monkey-blocks/trunk/readme.txt
r3443672 r3460426 3 3 Donate link: https://www.amazon.co.jp/registry/wishlist/39ANKRNSTNW40 4 4 Tags: gutenberg, block, blocks, editor, gutenberg blocks 5 Stable tag: 24.1.1 05 Stable tag: 24.1.11 6 6 Requires at least: 6.8 7 7 Tested up to: 6.9 -
snow-monkey-blocks/trunk/snow-monkey-blocks.php
r3443672 r3460426 2 2 /** 3 3 * Plugin name: Snow Monkey Blocks 4 * Version: 24.1.1 04 * Version: 24.1.11 5 5 * Description: Gutenberg blocks collection made by MonkeyWrench. 6 6 * Author: inc2734
Note: See TracChangeset
for help on using the changeset viewer.