Forums
-
- Forum
- Posts
-
- Installation
- 28,380
- Troubleshooting
- 62,269
- Themes
- 10,391
- Plugins
- 15,313
- Requests & Feedback
- 14,924
- Showcase
- 3,252
-
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);