# powerkit/2.2.9/modules/facebook/public/facebook-comments-template.php

Powerkit – Supercharge your WordPress Site, version 2.2.9. 23 lines.

- Page: https://pluginprobe.com/plugins/powerkit/2.2.9/code/modules/facebook/public/facebook-comments-template.php
- Raw: https://pluginprobe.com/plugins/powerkit/2.2.9/raw/modules/facebook/public/facebook-comments-template.php
- Modified: 2020-07-23T12:03:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/powerkit/2.2.9/code/modules/facebook/public/facebook-comments-template.php#L10-L20`.

```php
<?php
/**
 * Facebook Comments Template
 *
 * @link       https://codesupply.co
 * @since      1.0.0
 *
 * @package    PowerKit
 * @subpackage PowerKit/templates
 */

?>

<?php
if ( powerkit_connect( 'facebook_app_id' ) ) {
	?>
		<div class="fb-comments" data-width="100%" data-href="<?php the_permalink(); ?>" data-numposts="<?php get_option( 'powerkit_facebook_number_comments', 10 ); ?>"></div>
	<?php
} else {
	/* translators: Facebook API Link. */
	powerkit_alert_warning( __( 'Warning: Facebook ID not specified!', 'powerkit' ) );
}

```
