PluginProbe
Powerkit – Supercharge your WordPress Site / 2.4.4
Powerkit – Supercharge your WordPress Site v2.4.4
3.1.1 3.1.0 3.0.9 3.0.8 trunk 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 All 87 releases
powerkit / modules / facebook / public / facebook-comments-template.php

facebook-comments-template.php in Powerkit – Supercharge your WordPress Site 2.4.4, at modules/facebook/public/facebook-comments-template.php

23 lines 539 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Facebook Comments Template
4 *
5 * @link https://codesupply.co
6 * @since 1.0.0
7 *
8 * @package PowerKit
9 * @subpackage PowerKit/templates
10 */
11
12 ?>
13
14 <?php
15 if ( powerkit_connect( 'facebook_app_id' ) ) {
16 ?>
17 <div class="fb-comments" data-width="100%" data-href="<?php the_permalink(); ?>" data-numposts="<?php get_option( 'powerkit_facebook_number_comments', 10 ); ?>"></div>
18 <?php
19 } else {
20 /* translators: Facebook API Link. */
21 powerkit_alert_warning( __( 'Warning: Facebook ID not specified!', 'powerkit' ) );
22 }
23