ヘッダーのロゴの横にテキストを追加

やあ Daniel :wave:

あなたのサイトのヘッダーロゴの隣にテキストを追加するには、以下のようなコードを使用できます。

<script type="text/discourse-plugin" version="0.8">
api.decorateWidget("home-logo:after", helper => {
  const titleVisible = helper.attrs.minimized;
  const headerText = "追加したいテキスト"; // <--- ここを変更してください

  if (!titleVisible) {
    return api.h("span.header-text", headerText);
  }
});
</script>

これは、テーマまたはコンポーネントのヘッダーセクションに追加します。Discourse のテーマシステムについては、こちらで詳しく読むことができます。

「いいね!」 3