开发者 | Arifulislam124 |
---|---|
更新时间 | 2024年6月17日 03:52 |
PHP版本: | 3.0 及以上 |
WordPress版本: | 6.5.3 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
Future Aim Social Comments system - FeaturesBug Reports Bug reports are always welcome. Report here. More information
- Add most popular Facebook commenting system in your website.
- Future Aim Facebook scripts and comments only after clicking a button or scrolling down.
- Translation ready!
- Adjust number of comments, color scheme, language, width, sorting order etc..
- Facebook comments increases your audience.
- Customize button label.
- Super Light weight.
- Completely free to use with lifetime updates.
- Developer friendly.
- Follows best WordPress coding standards.
- Of course, available in GitHub
future-aim-social-comment-system.zip
to your plugins directory, which usually is /wp-content/plugins/
.Normal Facebook comments plugins will drag your website speed down. This plugin won't.
By lazy loading FB scripts and comments only when needed.
Comments and scripts will be loaded only after user clicking on a "Load Comments" (of course you can customize this button text too) button, or after scrolling down. You select any of these lazy load methods.
It's easy. You can use fafcs_supported_post_types
filter to add custom post type support. Add following line to your theme's functions.php or in your custom plugin.
`
add_filter( 'fafcs_supported_post_types', 'mycustom_add_fafcs_cpt_support' );
function mycustom_add_fafcs_cpt_support( $post_types ) {
// Here mycpt is your custom post type name.
$post_types[] = 'mycpt';
return $post_types;
}
`
Once you configure the plugin with APP ID, you will find the moderation page link on the plugin settings page.