We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba99010 commit 032401bCopy full SHA for 032401b
classes/Table/ManageValue/Taxonomy.php
@@ -31,12 +31,12 @@ public function register(): void
31
throw new DomainException("Method should be called before the %s action.", $action);
32
}
33
34
- add_action($action, [$this, 'render_value'], 100, 3);
+ add_filter($action, [$this, 'render_value'], 100, 3);
35
36
37
- public function render_value($value, $column_name, $term_id): void
+ public function render_value($value, $column_name, $term_id): ?string
38
{
39
- echo $this->render_cell((string)$column_name, (int)$term_id, (string)$value);
+ return $this->render_cell((string)$column_name, (int)$term_id, (string)$value);
40
41
42
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments