Forums
-
- Forum
- Posts
-
- Installation
- 28,536
- Troubleshooting
- 62,801
- Themes
- 10,444
- Plugins
- 15,389
- Requests & Feedback
- 14,986
- Showcase
- 3,258
-
You’d need to add a filter, something like this (untested)
function edit_link_icon($r,$post_id) {return "<img src='/images/edit_link_icon.png'>".$r;}
add_filter('bb_get_post_edit_link', 'edit_link_icon',10,2);