| Server IP : 104.21.25.182 / Your IP : 216.73.216.226 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying subscribe content
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package BuddyBoss_Theme
*/
if ( is_single() && ! is_related_posts() ) {
$blog_newsletter_sign = buddyboss_theme_get_option( 'blog_newsletter_switch' );
if ( ! empty( $blog_newsletter_sign ) ) {
$blog_shortcode = buddyboss_theme_get_option( 'blog_shortcode' );
?>
<div class="bb-subscribe-wrap">
<div class="bb-subscribe-content">
<div class="bb-subscribe-data">
<?php
if ( ! empty( $blog_shortcode ) ) {
echo do_shortcode( wp_kses( $blog_shortcode, bb_theme_kses_allowed_tags() ) );
}
?>
</div>
</div>
</div>
<?php
}
}