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 / block / render.php

render.php in Powerkit – Supercharge your WordPress Site 2.4.4, at modules/facebook/public/block/render.php

27 lines 947 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Facebook Fanpage block template
4 *
5 * @var $attributes - block attributes
6 * @var $options - layout options
7 *
8 * @link https://codesupply.co
9 * @since 1.0.0
10 *
11 * @package PowerKit
12 * @subpackage PowerKit/templates
13 */
14
15 ?>
16
17 <div class="<?php echo esc_attr( $attributes['className'] ); ?>" <?php echo ( isset( $attributes['anchor'] ) ? ' id="' . esc_attr( $attributes['anchor'] ) . '"' : '' ); ?>>
18 <div class="fb-page"
19 data-href="<?php echo esc_url( $attributes['href'] ); ?>"
20 data-hide-cover="<?php echo esc_attr( $attributes['showCover'] ? 'false' : 'true' ); ?>"
21 data-show-facepile="<?php echo esc_attr( $attributes['showFacepile'] ? 'true' : 'false' ); ?>"
22 data-show-posts="<?php echo esc_attr( $attributes['showPosts'] ? 'true' : 'false' ); ?>"
23 data-small-header="<?php echo esc_attr( $attributes['smallHeader'] ? 'true' : 'false' ); ?>"
24 data-adapt-container-width="true"
25 ></div>
26 </div>
27