Forums
-
- Forum
- Posts
-
- Installation
- 28,500
- Troubleshooting
- 62,592
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,971
- Showcase
- 3,256
-
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);