問題タブ [gutenberg-blocks]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
167 参照

wordpress - グーテンベルク用の intelliSense / オートコンプリート プラグインはありますか

Gutenberg WordPress ブロックエディターを使用して新しいプロジェクトを開始しています。withSelect を使用してカスタム ブロックを作成し、API データを使用する機能は非常に便利ですが、特に現在のドキュメントは理想的ではないため、あらゆる種類のオートコンプリートが欠けていると感じています。

私は主に VSCode で働いているので、主に IntelliSense プラグインに興味があります。

0 投票する
1 に答える
724 参照

wordpress - WordPress: Embed code with custom Gutenberg block

I am trying to include a Custom HTML embed input on my Gutenberg block but can't figure out how to do it.

I was wondering what is the best way to add HTML inside a block the same way that you do it with the Custom HTML block. Is there a Gutenberg element I missed?

I tried the approach of

Then I created a RichText on edit()

and finaly again on save()

My first problem is that the attribute is saved as <iframe src="https://www.w3schools.com"></iframe> for example. The second problem is that on frontend I see just an empty div.

The third problem is that even if I manage to make the code appear it appears as text and not as actual code in the frontend

Do you have any better approach or know what is wrong with my code?