This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Description
I can't click on the text labels next to the Facepile checkboxes:

The cause is:
https://github.com/pfefferle/wordpress-semantic-linkbacks/blob/master/semantic-linkbacks.php#L96
printf( '<input name="semantic_linkbacks_facepiles[]" type="checkbox" value="%1$s" %2$s />%3$s<br />', $key, checked( in_array( $key, $facepile, true ), true, false ), $value );
The correct output should be something like:
<input name="semantic_linkbacks_facepiles[]" type="checkbox" value="mention" checked="checked" id="mention">
<label for="mention">Mention</label><br>;
This will require adding an id to each input. Would you like me to create a PR for this?