Title: Matchday Blocks
Author: meinturnierplan
Published: <strong>2026 年 5 月 9 日</strong>
Last modified: 2026 年 6 月 20 日

---

搜尋外掛

![](https://ps.w.org/matchday-blocks/assets/banner-772x250.jpg?rev=3527154)

![](https://ps.w.org/matchday-blocks/assets/icon-256x256.jpg?rev=3527154)

# Matchday Blocks

 由 [meinturnierplan](https://profiles.wordpress.org/meinturnierplan/) 開發

[下載](https://downloads.wordpress.org/plugin/matchday-blocks.1.1.2.zip)

 * [詳細資料](https://tw.wordpress.org/plugins/matchday-blocks/#description)
 * [使用者評論](https://tw.wordpress.org/plugins/matchday-blocks/#reviews)
 *  [安裝方式](https://tw.wordpress.org/plugins/matchday-blocks/#installation)
 * [開發資訊](https://tw.wordpress.org/plugins/matchday-blocks/#developers)

 [技術支援](https://wordpress.org/support/plugin/matchday-blocks/)

## 外掛說明

Matchday Blocks integrates with the MeinTurnierplan platform to let you embed live
tournament data — match schedules, group standings and results — anywhere on your
site using native Gutenberg blocks.

Features:

 * Match Schedule block — list all matches grouped by round and date
 * Standings block — show live group standings
 * Latest Matches block — display the most recently played fixtures
 * Upcoming Matches block — show the next scheduled fixtures
 * Configurable cache to reduce external API requests
 * Team logos downloaded and served locally (no third-party image requests from 
   visitor browsers)

### External Services

This plugin connects to **MeinTurnierplan** ([https://www.meinturnierplan.de](https://www.meinturnierplan.de))
to retrieve tournament data.

 * **Data sent:** The Tournament ID you configured in the plugin settings.
 * **Data received:** Match results, team names, group standings, final round fixtures
   and team logo URLs.
 * **When:** Only on the server side — when the cache is empty or expired, or when
   you manually clear the cache. Visitor browsers are never used to contact MeinTurnierplan.
 * **Logo images:** Team logos are downloaded to your WordPress uploads directory(`/
   uploads/matchday-blocks/logos/`) and served from your own server.

Service terms of use: [https://www.meinturnierplan.de/legal.php](https://www.meinturnierplan.de/legal.php)

Privacy policy: [https://www.meinturnierplan.de/legal.php](https://www.meinturnierplan.de/legal.php)

### Development

Source code and build tools are available at [GitHub Repository](https://github.com/danfisher85/matchday-blocks)

Prerequisites: Node.js and npm. Blocks are compiled using `@wordpress/scripts` (
webpack-based). CSS is processed using PostCSS with Tailwind CSS.

To install dependencies:

    ```
    npm install
    ```

To build the plugin:

    ```
    npm run build
    ```

To watch for changes during development:

    ```
    npm run start
    ```

The `build/` directory and `assets/css/blocks.css` are generated by these commands
and should not be edited directly.

## 螢幕擷圖

[⌊Matchday Settings.⌉⌊Matchday Settings.⌉[

Matchday Settings.

[⌊Add a New Latest Matches block.⌉⌊Add a New Latest Matches block.⌉[

Add a New Latest Matches block.

[⌊Add a new Upcoming Matches block.⌉⌊Add a new Upcoming Matches block.⌉[

Add a new Upcoming Matches block.

[⌊Add a new Match Schedule block.⌉⌊Add a new Match Schedule block.⌉[

Add a new Match Schedule block.

[⌊Add a new Standings block.⌉⌊Add a new Standings block.⌉[

Add a new Standings block.

## 適用於區塊編輯器

這個外掛提供 4 個可供 Gutenberg/區塊編輯器使用的區塊。

 *   Tournament Standings Display tournament standings table from MeinTurnierplan.
 *   Latest Matches Display recently completed matches from MeinTurnierplan.
 *   Match Schedule Display complete match schedule from MeinTurnierplan.
 *   Upcoming Matches Display upcoming scheduled matches from MeinTurnierplan.

## 安裝方式

 1. Upload the plugin folder to `/wp-content/plugins/matchday-blocks/`.
 2. Activate the plugin through the **Plugins** screen in WordPress.
 3. Go to **Matchday** in the admin menu and enter your Tournament ID.
 4. Add any Matchday block to a page or post from the block inserter.

## 常見問題集

### Where do I find my Tournament ID?

Log in to your MeinTurnierplan account, open the tournament and copy the numeric
ID from the URL (e.g. `https://www.meinturnierplan.de/…?id=12345`).

### How often is tournament data refreshed?

You can configure the cache duration (1–168 hours) on the settings page. A background
WP-Cron job automatically refreshes the cache at the configured interval so no visitor
ever waits for a live API call. You can also force an immediate refresh by clicking**
Clear Cache Now** on the settings page.

### Are visitor IP addresses shared with MeinTurnierplan?

No. Team logos are downloaded to your server when the cache is first populated and
served locally thereafter. Visitor browsers never contact MeinTurnierplan’s servers
directly.

## 使用者評論

這個外掛目前沒有任何使用者評論。

## 參與者及開發者

以下人員參與了開源軟體〈Matchday Blocks〉的開發相關工作。

參與者

 *   [ meinturnierplan ](https://profiles.wordpress.org/meinturnierplan/)
 *   [ Roman Perevala ](https://profiles.wordpress.org/ramzesimus/)

[將〈Matchday Blocks〉外掛本地化為台灣繁體中文版](https://translate.wordpress.org/projects/wp-plugins/matchday-blocks)

### 對開發相關資訊感興趣？

任何人均可[瀏覽程式碼](https://plugins.trac.wordpress.org/browser/matchday-blocks/)、
查看 [SVN 存放庫](https://plugins.svn.wordpress.org/matchday-blocks/)，或透過 [RSS](https://plugins.trac.wordpress.org/log/matchday-blocks/?limit=100&mode=stop_on_copy&format=rss)
訂閱[開發記錄](https://plugins.trac.wordpress.org/log/matchday-blocks/)。

## 變更記錄

#### 1.1.2

 * Fix – Standings block: show “Standings are hidden for this tournament” instead
   of a generic error when the API omits `groupRankTables` due to `hideRanks` being
   set.
 * Fix – Latest Matches block: guard against missing `homeParticipant`/`awayParticipant`
   fields before accessing them (API marks these as optional).
 * Fix – Upcoming Matches block: same guard as above for unassigned future matches.
 * Fix – Match Schedule block: guard against missing `homeParticipant`/`awayParticipant`
   in group matches (the API marks these as optional on all match types).

#### 1.1.1

 * Fix – Uninstall routine: replaced direct `rmdir()` calls with WP_Filesystem methods
   to comply with WordPress coding standards.
 * Fix – Uninstall routine: prefixed all script-level variables with the plugin 
   prefix to comply with WordPress naming conventions.

#### 1.1.0

 * New – Background WP-Cron job refreshes the cache automatically so no visitor 
   triggers a live API call.
 * New – Plugin uninstall routine removes all options, transients, scheduled events
   and locally cached logo files.
 * New – Standings block displays custom group names (e.g. “Deutsche Bundesliga (
   A)”) and group logos when provided by the tournament.
 * Tweak – Admin menu item and page title renamed from “MeinTurnierplan” to “Matchday”.
 * Tweak – Admin menu icon updated to the Matchday brand logo.
 * Tweak – Match Schedule: “Preliminary Round” heading is hidden when no Final Round
   exists.
 * Tweak – Match Schedule: first column (match number) is now left-aligned.
 * Tweak – Higher-resolution logos used across all blocks (participants: lx95w; 
   group logos: lx95; Upcoming Matches: lx160).
 * Tweak – Unnamed participants display an en dash (–) placeholder instead of a 
   blank.
 * Tweak – Tested and confirmed compatible with WordPress 7.0.
 * Fix – Compatibility with updated MeinTurnierplan API: renamed fields `teams`  `
   participants`, `team1Id`/`team2Id`  `homeParticipant`/`awayParticipant`, and 
   rank table stat fields.
 * Fix – PHP warnings for incomplete rank table entries (unconfirmed/TBD participants
   now show – placeholders).

#### 1.0.1

 * Tweak – Update readme.txt.

#### 1.0.0

 * Initial release.

## 中繼資料

 *  版本 **1.1.2**
 *  最後更新 **1 週前**
 *  啟用安裝數 **少於 10 次**
 *  WordPress 版本需求 ** 6.0 或更新版本 **
 *  已測試相容的 WordPress 版本 **7.0**
 *  PHP 版本需求 ** 7.4 或更新版本 **
 *  語言
 * [English (US)](https://wordpress.org/plugins/matchday-blocks/)
 * 標籤:
 * [blocks](https://tw.wordpress.org/plugins/tags/blocks/)[football](https://tw.wordpress.org/plugins/tags/football/)
   [gutenberg](https://tw.wordpress.org/plugins/tags/gutenberg/)[sports](https://tw.wordpress.org/plugins/tags/sports/)
   [tournament](https://tw.wordpress.org/plugins/tags/tournament/)
 *  [進階檢視](https://tw.wordpress.org/plugins/matchday-blocks/advanced/)

## 評分

這個項目尚無任何評論記錄。

[Your review](https://wordpress.org/support/plugin/matchday-blocks/reviews/#new-post)

[查看全部使用者評論](https://wordpress.org/support/plugin/matchday-blocks/reviews/)

## 參與者

 *   [ meinturnierplan ](https://profiles.wordpress.org/meinturnierplan/)
 *   [ Roman Perevala ](https://profiles.wordpress.org/ramzesimus/)

## 技術支援

使用者可在技術支援論壇提出意見反應或使用問題。

 [檢視技術支援論壇](https://wordpress.org/support/plugin/matchday-blocks/)