A simple way to add Facebook comments support to your Hexo posts.
Usage
- In your Hexo website folder type
npm install hexo-fbcomments
- Put the following code inside your
_config.yml
and set the the appId to the one for your site you've created on Facebook for developers.
fbcomments:
appId: 0
colorscheme: dark
enabled: true
lang: en_US
order_by: time
numPosts: 10
- Add
<%- fbcommentshead() %>
in your theme's post header (before the body tag) and <%- fbcomments(page.permalink) %>
at the bottom of the post. - To style the comments add something like this in your CSS
section#comments {
border-color: white;
border: 1px 1px 1px 1px;
border-style: solid;
background: #dde !important;
}
More
- More information about the facebook comments plugin on the Official Documentation
- Created by Sergio Moura.
- Maintained by Richard Cooke.
- License: MIT