Reputation: 1856
I added facebook comment box to my site but there is no moderation. I went to moderation tools page on facebook but none of the comments were there.
All the code that I used;
<!-- in head -->
<meta property="fb:app_id" content="APP_ID" />
<!-- in body -->
<div class="fb-comments" data-href="<?php the_permalink(); ?>" data-num-posts="10" data-width="100%"></div>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=APP_ID";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
Upvotes: 1
Views: 750
Reputation: 11951
I would suggest switching your tags around a bit to match the edit, as well as adding this into your head section:
<meta property="fb:admins" content="{YOUR_FACEBOOK_USER_ID}"/>
That property should enable you to moderate comments if you've provided your own ID. You can retrieve your ID from the very handy Graph API Explorer.
If you read the documentation I provided in my earlier comment, you'll see all of the available options at your disposal to customize your comment box.
Upvotes: 2