![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/custom-facebook-feed/templates/ |
<?php /** * Custom Facebook Feed : Credit * Show a credit message to Smashballoon * * @version 2.19 Custom Facebook Feed by Smash Balloon * */ // Don't load directly if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } use CustomFacebookFeed\CFF_Utils; $cff_show_credit = CFF_Utils::check_if_on( $atts['credit'] ); if($cff_show_credit) : ?> <p class="cff-credit"> <a href="https://smashballoon.com/custom-facebook-feed/" target="_blank" style="color: #<?php echo esc_attr( $cff_posttext_link_color ); ?>" title="<?php echo esc_attr('Smash Balloon Custom Facebook Feed WordPress Plugin') ?>"> <img src="<?php echo CFF_PLUGIN_URL ?>/assets/img/smashballoon-tiny.png" alt="<?php echo esc_attr('Smash Balloon Custom Facebook Feed WordPress Plugin') ?>" /> The Custom Facebook Feed plugin </a> </p> <?php endif;