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

Powerkit – Supercharge your WordPress Site, version 2.9.0. 22 lines.

- Page: https://pluginprobe.com/plugins/powerkit/2.9.0/code/modules/facebook/public/facebook-comments-template.php
- Raw: https://pluginprobe.com/plugins/powerkit/2.9.0/raw/modules/facebook/public/facebook-comments-template.php
- Modified: 2023-12-20T19:57:28+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.9.0/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 ( get_option( '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 {
	powerkit_alert_warning( sprintf( __( 'The Facebook App ID is not provided, please add it on the', 'powerkit' ), admin_url( 'options-general.php?page=powerkit_connect&tab=facebook' ) ) );
}

```
