bbPress で誰でも画像投稿をできるようにする
Image Upload for BBPress
で動作しているが、
GD bbPress Attachments
が必要な人向けの情報です。
以下はリンク切れのためWordPress のプラグイン bbPress で掲示板を作る。 (WebArchive)
https://o6asan.com/blog-j/2014/08/15/wordpress-%E3%81%AE%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3-bbpress-%E3%81%A7%E6%8E%B2%E7%A4%BA%E6%9D%BF%E3%82%92%E4%BD%9C%E3%82%8B%E3%80%82/
にあるように
GD bbPress Attachments
に対してgd-bbpress-attachments/code/attachments/class.php
の中にある。
return apply_filters('d4p_bbpressattchment_is_user_allowed', $allowed);
↓
return apply_filters('d4p_bbpressattchment_is_user_allowed', true);
return apply_filters('d4p_bbpressattchment_is_hidden_from_visitors', $value == 1);
↓
return apply_filters('d4p_bbpressattchment_is_hidden_from_visitors', false);
のようにすると良い。
バージョンが上がって、gd-bbpress-attachments/code/class.php
となっている。
ディスカッション
コメント一覧
まだ、コメントがありません