# トピックリスト作成者

**URL:** https://meta.discourse.org/t/topic-list-author/269910
**Category:** Theme component
**Tags:** official, topic-list-author
**Created:** [2023 年 6 月 28 日午後 3:45 UTC](https://meta.discourse.org/t/topic-list-author/269910 "2023-06-28T15:45:52Z")
**Posts on this page:** 1
**Showing post:** 58

<div class="post-metadata">

### Author: ![nathank](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nathank/32/290039_2.png) [@nathank](https://meta.discourse.org/u/nathank)
#### Post date: [2025 年 8 月 29 日午前 11:27 UTC](https://meta.discourse.org/t/topic-list-author/269910/58 "2025-08-29T11:27:49Z")

</div>

このTCを、トピックサムネイルやトピック抜粋と同様に、指定したカテゴリにのみ適用することは可能でしょうか？

> [@david](#):
>
> はい、カテゴリ設定を追加しました。
> 
> [FEATURE: Allow enabling per-category · discourse/discourse-topic-excerpts@aed85ba · GitHub](https://github.com/discourse/discourse-topic-excerpts/commit/aed85ba07007d38fe98de8889e3b155c69aeb812)

### 回避策

このCSS（テーマコンポーネントのデスクトップタブに追加した場合）は、私のユースケースでは、目的のカテゴリ以外のすべてのカテゴリで機能をオフにするため、うまく機能することがわかりました。

```plaintext
body:not(.category-ask-the-candidates) {
    .topic-list .posters {
        display: table-cell;
    }
    th.author, .custom-author-column {
        display: none;
    }
}

```

ご自身で使用する場合は、指定したカテゴリのスラッグを置き換えてください。

---

_[View the full topic](https://meta.discourse.org/t/topic-list-author/269910)._
