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

Commit f0731c5

Browse files
committed
Add missing file and enhance README
1 parent a363b8d commit f0731c5

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ The IndieWeb community defines several types of feedback:
4747

4848
See [Extensions](https://indieweb.org/Semantic_Linkbacks#Extensions)
4949

50+
### How do I add this into my plugin? ###
51+
52+
The plugin will automatically enhance webmentions, trackbacks, and pingbacks with an avatar and additional context. It will also automatically add a facepile instead of individual
53+
comments, but this feature can either be turned off by an aware theme or under Discussion in your Settings.
54+
5055
### Who made the logos? ###
5156

5257
The Webmention and Pingback logos are made by [Aaron Parecki](http://aaronparecki.com) and the Microformats logo is made by [Dan Cederholm](http://simplebits.com/work/microformats/)

readme.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ The IndieWeb community defines several types of feedback:
4747

4848
See [Extensions](https://indieweb.org/Semantic_Linkbacks#Extensions)
4949

50+
= How do I add this into my plugin? =
51+
52+
The plugin will automatically enhance webmentions, trackbacks, and pingbacks with an avatar and additional context. It will also automatically add a facepile instead of individual
53+
comments, but this feature can either be turned off by an aware theme or under Discussion in your Settings.
54+
5055
= Who made the logos? =
5156

5257
The Webmention and Pingback logos are made by [Aaron Parecki](http://aaronparecki.com) and the Microformats logo is made by [Dan Cederholm](http://simplebits.com/work/microformats/)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<fieldset id="semantic_linkbacks">
2+
<?php if ( apply_filters( 'semantic_linkbacks_facepiles', true ) ) { ?>
3+
<label for="semantic_linkbacks_facepiles">
4+
<input type="checkbox" name="semantic_linkbacks_facepiles" id="semantic_linkbacks_facepiles" value="1" <?php
5+
echo checked( true, get_option( 'semantic_linkbacks_facepiles' ) ); ?> />
6+
<?php _e( 'Automatically embed facepile <small>(May not work on all themes)</small>', 'semantic-linkbacks' ) ?>
7+
</label>
8+
9+
<br />
10+
<?php } ?>
11+
12+
</fieldset>

0 commit comments

Comments
 (0)